/* 35s Secure File Download Manager - Frontend Styles */

.35s-sfdm-download-container {
    margin: 20px 0;
}

.35s-sfdm-download-btn {
    background-color: #0073aa;
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.35s-sfdm-download-btn:hover {
    background-color: #005a87;
    color: white;
}

.35s-sfdm-download-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.35s-sfdm-email-form {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    margin: 15px 0;
    max-width: 400px;
}

.35s-sfdm-email-form p {
    margin: 0 0 15px 0;
    color: #333;
}

.35s-sfdm-email-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.35s-sfdm-email-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.35s-sfdm-email-submit {
    background-color: #00a32a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 10px;
}

.35s-sfdm-email-submit:hover {
    background-color: #008a20;
}

.35s-sfdm-email-cancel {
    background-color: #666;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.35s-sfdm-email-cancel:hover {
    background-color: #555;
}

.35s-sfdm-loading {
    opacity: 0.6;
    pointer-events: none;
}

.35s-sfdm-error {
    color: #d63638;
    font-size: 14px;
    margin: 10px 0;
}

.35s-sfdm-success {
    color: #00a32a;
    font-size: 14px;
    margin: 10px 0;
}

.35s-sfdm-confirmation-sent {
    background-color: #28a745;
    color: white;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #218838;
}