/* Custom CSS for Insurance Florida site */

/* Hide honeypot field */
.hidden {
    display: none !important;
}

/* Alert styles */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/* Error message styling */
.error-message {
    display: block;
    margin-top: 0.25rem;
    color: #dc2626;
    font-size: 0.875rem;
}

.error-message.hidden {
    display: none;
}

/* Input error state */
input.error,
select.error {
    border-color: #dc2626 !important;
    border-width: 2px !important;
}

/* Professional insurance styling */
.insurance-card {
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.insurance-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Button styles */
.btn-primary {
    background-color: #0066CC;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    background-color: #008B8B;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #006666;
}

/* Prose styling for blog content */
.prose {
    color: #374151;
    line-height: 1.75;
}

.prose p {
    margin-bottom: 1.25em;
}

.prose h2 {
    color: #003366;
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
}

.prose h3 {
    color: #0066CC;
    font-size: 1.25em;
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

.prose ul, .prose ol {
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}

.prose li {
    margin-bottom: 0.5em;
}

.prose a {
    color: #0066CC;
    text-decoration: underline;
}

.prose a:hover {
    color: #0052a3;
}

/* Top bar styling */
#topbar {
    background-color: #0066CC;
}

#topbar select {
    color: #1f2937;
}

