/* Secure Drop Tool - Specific Overrides */

/* Override body layout for container-based structure */
body {
    align-items: flex-start;
    padding-top: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styling specific to secure-drop */
header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #b3b3b3;
    padding-bottom: 20px;
}

/* URL container for sharing */
.url-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
}

.share-url {
    flex: 1;
    padding: 8px;
    font-size: 0.8rem;
}

.share-section,
.manual-section {
    margin-top: 15px;
}

.encrypt-output,
.decrypt-output {
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #b3b3b3;
    background-color: rgba(179, 179, 179, 0.05);
}

.encrypted-output,
.decrypted-text {
    width: 100%;
    min-height: 60px;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    line-height: 1.3;
    word-break: break-all;
    resize: vertical;
}

.download-item {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #b3b3b3;
    background-color: rgba(179, 179, 179, 0.1);
}

.download-item p {
    margin-bottom: 5px;
    font-size: 0.8rem;
}

.download-link {
    color: #e6e6e6;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    border: 1px solid #b3b3b3;
    background-color: #000000;
    transition: all 0.2s;
}

.download-link:hover {
    background-color: #e6e6e6;
    color: #000000;
}

footer {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #b3b3b3;
    padding-top: 20px;
}

footer p {
    margin-bottom: 5px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .url-container {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }

    .share-url {
        font-size: 0.7rem;
    }
}