/* Frontend Styles - Add additional custom styles here */

.dwc-booking-form input:focus,
.dwc-booking-form textarea:focus,
.dwc-booking-form select:focus {
    outline: none;
    border-color: #2d5a3d;
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.dwc-booking-submit:active {
    transform: translateY(0);
}

/* Animation for cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Print styles */
@media print {
    header, footer, .sidebar {
        display: none;
    }
}