/* Verification button */
.verify-button {
    display: inline-block;
    background-color: #ff3e3e;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.8em;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.verify-button:hover {
    background-color: #cc0000;
}

/* Static verification page styles */
.verification-section h1 {
    margin-bottom: 1rem;
}

.warning-box {
    background-color: rgba(255, 62, 62, 0.1);
    border-color: #ff3e3e;
    color: #f0f0f0;
    border-left: 4px solid #ff3e3e;
    padding: 1rem;
    margin: 1.5rem 0;
}

.note-box {
    background-color: rgba(62, 142, 255, 0.1);
    border-color: #3e8eff;
    color: #f0f0f0;
    border-left: 4px solid #3e8eff;
    padding: 1rem;
    margin: 1.5rem 0;
}

.instructions-section {
    margin: 2rem 0;
}

.instructions-section ol {
    line-height: 1.6;
    margin-left: 1.5rem;
}

.instructions-section pre {
    background-color: #f5f5f5;
    padding: 0.75rem;
    border-radius: 4px;
    overflow-x: auto;
    margin: 0.5rem 0;
}

.instructions-section code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
}

.signature-entry {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.signature-entry h3 {
    margin-bottom: 0.5rem;
}

.onion-address.code-block {
    font-family: 'JetBrains Mono', monospace;
    background-color: #f5f5f5;
    padding: 0.75rem;
    border-radius: 4px;
    margin: 0.5rem 0;
    word-break: break-all;
    font-size: 0.9em;
}

.signature-label {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.signature-block, 
.pubkey-block {
    display: block;
    width: 100%;
    height: auto;
    min-height: 150px;
    font-family: 'JetBrains Mono', monospace;
    background-color: #f5f5f5;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    resize: none;
    font-size: 0.85em;
    line-height: 1.4;
    margin: 0.5rem 0;
}

.pubkey-block {
    min-height: 200px;
}

.pubkey-section {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 2px solid #eee;
}

.pubkey-section code {
    font-family: 'JetBrains Mono', monospace;
    background-color: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
}

.back-to-top {
    text-align: center;
    margin: 2rem 0;
}

.back-to-top-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background-color 0.2s;
}

.back-to-top-link:hover {
    background-color: #e0e0e0;
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    .warning-box {
        background-color: rgba(255, 62, 62, 0.1);
        border-color: #ff3e3e;
        color: #f0f0f0;
    }
    
    .note-box {
        background-color: rgba(62, 142, 255, 0.1);
        border-color: #3e8eff;
        color: #f0f0f0;
    }
    
    .instructions-section pre,
    .onion-address.code-block,
    .signature-block,
    .pubkey-block {
        background-color: #222;
        color: #f0f0f0;
        border-color: #444;
    }
    
    .pubkey-section code {
        background-color: #333;
        color: #f0f0f0;
    }
    
    .signature-entry {
        border-color: #333;
    }
    
    .back-to-top-link {
        background-color: #333;
        color: #f0f0f0;
    }
    
    .back-to-top-link:hover {
        background-color: #444;
    }
} 