body {
    background-color: #f8f9fa;
}

.card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
}

.alert {
    margin-bottom: 0;
}

.alert p:last-child {
    margin-bottom: 0;
}

h1 {
    color: #1a3b5d;
}

.btn-primary {
    background-color: #1a3b5d;
    border-color: #1a3b5d;
}

.btn-primary:hover {
    background-color: #152f4a;
    border-color: #152f4a;
}

#results .alert {
    background-color: #e8f4f8;
    border-color: #b8e0ed;
}

#complianceStatus {
    font-weight: bold;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dee2e6;
}

.logo {
    max-height: 120px;
    max-width: 300px;
    width: auto;
    height: auto;
}

/* PDF Download Button Styling */
#downloadPdfBtn {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: white;
}

#downloadPdfBtn:hover {
    background: linear-gradient(135deg, #218838, #1da88a);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    color: white;
}

#downloadPdfBtn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#downloadPdfBtn:disabled {
    background: linear-gradient(135deg, #6c757d, #868e96);
    transform: none;
    cursor: not-allowed;
}

#downloadPdfBtn i {
    margin-right: 8px;
}

/* Email Section Styles */
#sendEmailBtn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: white;
}

#sendEmailBtn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    color: white;
}

#sendEmailBtn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#sendEmailBtn:disabled {
    background: linear-gradient(135deg, #6c757d, #868e96);
    transform: none;
    cursor: not-allowed;
}

#sendEmailBtn i {
    margin-right: 6px;
}

#emailInput {
    border-radius: 8px 0 0 8px;
    border-right: none;
}

#emailInput:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.border-top {
    border-color: #e9ecef !important;
}
