/* Contact Form Styles */
#lexterna-contact-form {
    max-width: 600px;
    margin: 0;
}

.contact-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#lexterna-contact-form input,
#lexterna-contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

#lexterna-contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

#lexterna-contact-form button {
    background-color: #007bff;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#lexterna-contact-form button:hover:not(:disabled) {
    background-color: #0056b3;
}

#lexterna-contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
