    /* General body styles */
    
    body {
        font-family: Arial, sans-serif;
        background-color: #f4f4f4;
        color: #333;
        margin: 0;
        padding: 0;
    }
    /* Header styles */
    
    header {
        background-color: #6a1b9a;
        /* Purple background */
        color: white;
        padding: 15px 0;
        text-align: center;
    }
    /* Container styles */
    
    .container {
        width: 100%;
        max-width: 1100px;
        margin: 20px auto;
        padding: 20px 24px;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        position: relative;
        text-align: center;
    }
    /* Create Booking Button styles */
    
    .create-booking-btn {
        background-color: #6a1b9a;
        /* Purple background */
        color: white;
        border: none;
        padding: 15px 40px;
        /* Increased padding for more width */
        border-radius: 8px;
        cursor: pointer;
        font-size: 18px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        /* Space between icon and text */
        margin: 20px auto;
        /* Center button with margin auto */
    }
    
    .create-booking-btn i {
        font-size: 24px;
        /* Larger icon size */
    }
    
    .create-booking-btn:hover {
        background-color: #4a0072;
        /* Darker purple on hover */
    }
    /* Modal styles */
    
    .modal {
        display: none;
        /* Hidden by default */
        position: fixed;
        z-index: 1000;
        /* Sit on top */
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
        /* Black background with opacity */
        align-items: center;
        justify-content: center;
    }
    
    .modal-content {
        background-color: white;
        border-radius: 8px;
        margin: auto;
        /* Center vertically */
        padding: 20px;
        width: 90%;
        max-width: 600px;
        position: relative;
    }
    
    .close {
        color: #6a1b9a;
        /* Purple color */
        float: right;
        font-size: 28px;
        font-weight: bold;
    }
    
    .close:hover {
        color: #4a0072;
        /* Darker purple on hover */
        text-decoration: none;
        cursor: pointer;
    }
    
    h2 {
        color: #6a1b9a;
        text-align: center;
        /* Purple color */
    }
    /* Form styles */
    
    form {
        display: flex;
        flex-direction: column;
    }
    
    label {
        margin: 10px 0 5px 10px;
    }
    
    input[type="text"],
    input[type="number"],
    input[type="date"] {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        margin-bottom: 15px;
    }
    
    .cmd button {
        background-color: #6a1b9a;
        /* Purple background */
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
        margin-right: 10px;
        margin-top: 10px;
    }
    
    .delete-btn {
        background-color: #6a1b9a;
        /* Purple background */
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
        margin-right: 10px;
        margin-top: 10px;
    }
    
    input[type="submit"]:hover,
    button:hover {
        background-color: #4a0072;
        /* Darker purple on hover */
    }
    /* Clear button specific styles */
    
    #clearForm {
        background-color: #e0e0e0;
        /* Light gray for clear button */
        color: #333;
    }
    
    #clearForm:hover {
        background-color: #b0b0b0;
        /* Darker gray on hover */
    }
    /* Booking Page Table Styles */
    
    .booking-details-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }
    
    .booking-details-table th {
        padding: 10px;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }
    
    .booking-details-table td {
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }
    
    .booking-details-table th {
        background-color: #6a0dad;
        /* Purple background */
        border-radius: 5px;
        color: white;
    }
    
    .booking-details-table tr:hover {
        background-color: #f1f1f1;
    }
    /* Status color changes */
    
    .status-pending {
        background-color: lightgray;
    }
    
    .status-canceled {
        background-color: red;
        color: white;
    }
    
    .status-completed {
        background-color: green;
        color: white;
    }
    
    .status-approved {
        background-color: #6a1b9a;
        color: white;
    }
    
    .SeeMore-btn {
        display: none;
    }
    
    .AT {
        display: none;
    }
    /* Responsive Design */
    /* Responsive Design */
    
    @media (max-width: 767px) {
        .container {
            width: 100%;
            max-width: 300px;
            margin: 20px auto;
            padding: 15px;
        }
        .SeeMore-btn {
            display: block;
            background-color: #6a1b9a;
            /* Purple background */
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
        }
        .form input[type="text"],
        .form input[type="number"] {
            width: 92%;
        }
        .form label {
            text-align: left;
        }
        .form {
            display: grid;
        }
        .VL,
        .RM,
        .VD {
            display: none;
        }
        .AT {
            display: block;
        }
        .booking-details-table th,
        .booking-details-table td {
            font-size: 14px;
            padding: 8px;
            text-align: center;
        }
        .form input {
            width: 100%;
            margin: 4px 0;
        }
        .form button {
            width: 100%;
            margin: 10px 0 !important;
        }
        iframe {
            width: 100%;
            height: 100%;
        }
        .modal-content {
            width: 100%;
            max-width: 300px;
            height: 100%;
            margin: auto;
            padding: 10px;
        }
        .modal-content2 {
            width: 100%;
            max-width: 290px;
            height: auto;
            margin: auto;
            padding: 10px;
            background-color: white;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }
        .booking-details-table2 {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        .booking-details-table2 th {
            padding: 10px;
            text-align: center;
            border-bottom: 1px solid #ddd;
        }
        .booking-details-table2 td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .booking-details-table2 th {
            background-color: #6a0dad;
            /* Purple background */
            border-radius: 5px;
            color: white;
        }
        .booking-details-table2 tr:hover {
            background-color: #f1f1f1;
        }
    }