@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
body {
    font-family: "Montserrat", sans-serif;
}


/* Style for radio buttons */

.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    /* Responsive grid for time slots */
    gap: 8px;
    /* Reduced gap */
    margin-top: 8px;
    /* Reduced margin */
}

.radio-group input[type=radio] {
    display: none;
    /* Hide default radio button */
}

.radio-group label {
    background-color: #f8fafc;
    /* Lighter background for unselected */
    color: #4a5568;
    /* Darker text */
    padding: 10px 12px;
    /* Reduced padding */
    border-radius: 8px;
    /* Slightly less rounded */
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    /* Smoother transition */
    border: 1px solid #e2e8f0;
    /* Softer border */
    font-weight: 500;
    font-size: 0.9rem;
    /* Slightly smaller font */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

.radio-group input[type=radio]:checked+label {
    background-color: #4f46e5;
    /* Primary-600 for selected */
    color: white;
    border-color: #4338ca;
    /* Darker primary border */
    box-shadow: 0 4px 8px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Less pronounced shadow */
    transform: translateY(-2px);
    /* Less noticeable lift */
}

.radio-group label:hover {
    background-color: #eef2ff;
    /* Primary-50 on hover */
    border-color: #c7d2fe;
    /* Primary-200 border on hover */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    /* Slightly less shadow on hover */
}


/* Table specific styles */

.booking-table-container {
    margin-top: 30px;
    /* Reduced margin */
    background-color: #fff;
    border-radius: 12px;
    /* Slightly less rounded */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    /* Slightly less strong shadow */
    overflow-x: auto;
    /* For responsive table on small screens */
}

.booking-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.booking-table th,
.booking-table td {
    padding: 12px 16px;
    /* Reduced padding */
    border-bottom: 1px solid #e2e8f0;
    /* Lighter border */
}

.booking-table th {
    background-color: #f8fafc;
    color: #374151;
    /* Darker text */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    /* Smaller for header */
    letter-spacing: 0.04em;
    /* Slightly less spacing */
}

.booking-table tbody tr:last-child td {
    border-bottom: none;
}

.booking-table tbody tr:hover {
    background-color: #f5f7fa;
    /* Subtle hover effect */
}


/* Styles for the message box (alert) */

#messageBox {
    position: fixed;
    bottom: 20px;
    /* Reduced distance from the bottom */
    left: 50%;
    /* Center horizontally */
    transform: translateX(-50%);
    /* Adjust for true centering */
    z-index: 1000;
    /* Ensure it's on top */
    max-width: 85%;
    /* Slightly reduced max width */
    min-width: 250px;
    /* Slightly reduced minimum width */
    padding: 15px 25px;
    /* Reduced padding */
    border-radius: 10px;
    /* Slightly less rounded */
    font-size: 1rem;
    /* Slightly smaller font */
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Slightly less strong shadow */
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    /* Smoother transition */
    opacity: 0;
    /* Start hidden */
    pointer-events: none;
    /* Allow clicks through when hidden */
}

#messageBox.show {
    opacity: 1;
    /* Show when 'show' class is added */
    transform: translateX(-50%) translateY(0);
    /* Reset transform for smooth entry */
    pointer-events: auto;
    /* Allow clicks when shown */
}


/* Specific message box colors */

#messageBox.bg-green-100 {
    background-color: #dcfce7;
    color: #16a34a;
}


/* Success */

#messageBox.bg-red-100 {
    background-color: #fee2e2;
    color: #dc2626;
}


/* Error */

#messageBox.bg-blue-100 {
    background-color: #e0f2fe;
    color: #0284c7;
}


/* Info */


/* Styles for the push notification container */

#pushNotificationContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    /* Higher than messageBox */
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Space between notifications */
    max-width: 350px;
    /* Limit width */
    pointer-events: none;
    /* Allow clicks through empty space */
}

.push-notification-item {
    background-color: #ffffff;
    color: #374151;
    padding: 10px 15px;
    /* Reduced padding */
    border-radius: 16px;
    /* More rounded */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    /* Reduced font size */
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.5s forwards ease-out;
    pointer-events: auto;
    /* Allow clicks on the notification itself */
}

.push-notification-item.hide {
    animation: slideOut 0.5s forwards ease-in;
}

.push-notification-item .close-btn {
    background: none;
    border: none;
    font-size: 1rem;
    /* Reduced font size */
    color: #9ca3af;
    cursor: pointer;
    margin-left: 10px;
    /* Reduced margin */
    transition: color 0.2s ease-in-out;
}

.push-notification-item .close-btn:hover {
    color: #ef4444;
    /* Red on hover */
}


/* Specific colors for notification types */

.push-notification-item.success {
    border-left: 5px solid #10b981;
    /* Green border */
}

.push-notification-item.error {
    border-left: 5px solid #ef4444;
    /* Red border */
}

.push-notification-item.info {
    border-left: 5px solid #3b82f6;
    /* Blue border */
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}


/*# sourceMappingURL=app.css.map */