/* c:/xampp/htdocs/myspacio/booking/assets/css/style.css */

/* General body styling (if not fully covered by Tailwind in header) */
body {
    font-family: 'Poppins', sans-serif; /* Assuming Poppins is a desired font */
    /* background-color: #f9fafb; /* Tailwind bg-gray-50 */
    /* color: #1f2937; /* Tailwind text-gray-800 */
}

/* Custom styles for specific elements if needed */
/* For example, if you want a specific look for the photo display area */
#desk-type-photos img {
    /* max-height: 300px; /* Example: constrain image height */
    /* border: 1px solid #e5e7eb; /* Tailwind border-gray-200 */
    /* border-radius: 0.5rem; /* Tailwind rounded-lg */
}

/* You can add more specific styles for date pickers, alerts, etc. */

/* Example: Style for the alert messages if not using Tailwind fully */
.alert-message { padding: 1rem; margin-bottom: 1rem; border-radius: 0.375rem; }
.alert-error { background-color: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success { background-color: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }