/* Root Variables */
:root {
    --primary-color: #124e66;
    --white: #EDF4F2;
    --offwhite: #fff;
}

/* Base Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: whitesmoke;
    padding-left: 100px;
    box-sizing: border-box;
}

/* Layout Components */
/* Sidebar Component */
.sidebar {
    width: 80px;
    height: 85vh;
    background-color: #003135;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 110px;
    left: 20px;
    border-radius: 50px;
}

/* Logo Component */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 80px;
    height: 80px;
    background-color: #fbe9d0;
    border-radius: 25px;
    top: 20px;
    left: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.logo img {
    width: 50px;
    height: 50px;
}

/* Navigation Component */
.nav-list {
    list-style-type: none;
    padding: 20px;
}

.nav-item {
    margin: 20px;
}

.nav-item a {
    text-decoration: none;
    color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;
}

.nav-item a:hover,
.nav-item a.active {
    background-color: #fbe9d0;
    margin-left: 20px;
    width: 40px;
    border-radius: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #003135;
    font-weight: 500;
    width: 100%;
    text-align: center;
}
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 16px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    max-width: 300px;
    display: flex;
    align-items: center;
}

.toast.success {
    background-color: #4CAF50; /* Green */
}

.toast.error {
    background-color: #f44336; /* Red */
}

.toast::before {
    content: '\2713'; /* Checkmark */
    margin-right: 10px;
    font-size: 20px;
}

.toast.error::before {
    content: '\2716'; /* Cross */
}

.toast.show {
    opacity: 1;
}

/* Active Navigation Indicator */
.nav-item a.active::before {
    content: '';
    position: absolute;
    left: -20px;
    width: 70px;
    height: 50px;
    background-color: whitesmoke;
    border-radius: 25px 0 0 25px;
    z-index: -1;
    padding: 10px 0;
}

.nav-item a.active::after {
    content: "";
    position: absolute;
    bottom: -32px;
    right: -10px;
    width: 48px;
    height: 24px;
    background: transparent;
    border-top-right-radius: 50px;
    box-shadow: 12px -1px 0 1px whitesmoke;
}

/* Card Components */
.card-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.card {
    width: 200px;
    height: 200px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
    margin: 8px;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Card Icons */
.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    position: relative;
    top: -25%;
    right: -48%;
}

/* Card Type Styles */
.card-icon i {
    font-size: 24px;
    transition: color 0.3s;
}

.card:hover .card-icon i {
    color: white;
}

.card-number {
    width: 90%;
    height: 40px;
    border-radius: 25px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--offwhite);
    margin: 10px auto;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Phone Card */
.phone i { color: #ff5722; }
.card-icon.phone { background-color: #ffe0b2; }
.card-number.phone { background-color: #ffe0b2; }
.card:hover .card-icon.phone { background: linear-gradient(to right, #ff5722, #ff8a50); }
.card:hover .card-number.phone { background: linear-gradient(to right, #ff5722, #ff8a50); color: white; }

/* Calendar Card */
.calendar i { color: #19a0b2; }
.card-icon.calendar { background-color: #b2ebf2; }
.card-number.calendar { background-color: #b2ebf2; }
.card:hover .card-icon.calendar { background: linear-gradient(to right, #19a0b2, #5fd3e0); }
.card:hover .card-number.calendar { background: linear-gradient(to right, #19a0b2, #5fd3e0); color: white; }

/* Hospital Card */
.hospital i { color: #6836c5; }
.card-icon.hospital { background-color: #d1c4e9; }
.card-number.hospital { background-color: #d1c4e9; }
.card:hover .card-icon.hospital { background: linear-gradient(to right, #6836c5, #9b6fe5); }
.card:hover .card-number.hospital { background: linear-gradient(to right, #6836c5, #9b6fe5); color: white; }

/* Visit Card */
.visit i { color: #36C572; }
.card-icon.visit { background-color: #C8E9C4; }
.card-number.visit { background-color: #C8E9C4; }
.card:hover .card-icon.visit { background: linear-gradient(to right, #36C572, #6FE59D); }
.card:hover .card-number.visit { background: linear-gradient(to right, #36C572, #6FE59D); color: white; }

/* Greeting Card */
.greeting-card {
    width: 100%;
    height: 200px;
    background-image: linear-gradient(to bottom, #2ac8c7, #30b9b9, #34aaaa, #369b9c, #388c8e);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 20px auto;
    padding: 20px;
    position: relative;
    margin-top: 8%;
}

.card-img {
    width: 30%;
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
    overflow: visible;
}

.greeting-image {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 1%;
    left: 100%;
}

.card-content {
    width: 70%;
    flex-grow: 1;
    color: white;
}

/* Appointment Table */
.appointment-table-section {
    width: 100%;
    background-color: var(--offwhite);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
    overflow-x: auto;
}

.appointment-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
.appointment-table th {
    background-color: #EEFDFE;
    padding: 12px;
    text-align: left;
    color: #333;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.table-header h3 {
    font-size: 20px;
    color: #ffffff;
    background-color: #003135;
    padding: 15px;
    border-radius: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    margin: -39px 0 -21PX -42PX;
    text-transform: uppercase;
}

.add-btn {
    background-color: #124e66;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}



.appointment-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

/* Status Badges */
.status-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.status-badge.confirmed {
    background-color: #E3F2E7;
    color: #4CAF50;
}

.status-badge.pending {
    background-color: #FFF3E0;
    color: #FFA726;
}

.status-badge.cancelled {
    background-color: #FFEBEE;
    color: #F44336;
}

/* View Button */
.view-btn {
    background-color: #124e66;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.view-btn:hover {
    background-color: #0d3c4e;
    transform: translateY(-1px);
}

/* Table Hover Effects */
.appointment-table tbody tr:hover {
    background-color: #f5f5f5;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #EEFDFE;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.pagination-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 14px;
}

.entries-select {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    background-color: white;
    color: #124e66;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.entries-select:hover,
.entries-select:focus {
    border-color: #124e66;
}

.entries-select:focus {
    box-shadow: 0 0 0 2px rgba(18, 78, 102, 0.1);
}

.pagination-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background-color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #124e66;
    font-size: 14px;
    font-weight: 500;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #f8f9fa;
    border-color: #124e66;
}

.pagination-btn.active {
    background-color: #124e66;
    color: white;
    border-color: #124e66;
}

.pagination-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    background-color: #f8f9fa;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .greeting-card {
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
        margin-top: 15%;
    }

    .card-content {
        width: 100%;
        order: 2;
        margin-top: 20px;
    }

    .card-img {
        width: 100%;
        order: 1;
        justify-content: center;
        margin-bottom: 20px;
    }

    .greeting-image {
        position: relative;
        left: 0;
        width: 150px;
        height: auto;
        margin: 0 auto;
    }

    .table-header {
        padding: 0 10px;
    }
    
    .table-header h3 {
        font-size: 20px;
    }
    
    .add-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .pagination {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .pagination-info {
        width: 100%;
        justify-content: center;
    }
    
    .pagination-controls {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pagination-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Table Column Alignment */
.appointment-table th:nth-child(4),
.appointment-table th:nth-child(5),
.appointment-table td:nth-child(4),
.appointment-table td:nth-child(5) {
    text-align: center;
}

/* Status Badge Container */
.appointment-table td:nth-child(4) {
    display: table-cell;
    vertical-align: middle;
}

/* Action Button Container */
.appointment-table td:nth-child(5) {
    display: table-cell;
    vertical-align: middle;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 25px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.modal.hidden .modal-content {
    transform: translateY(-20px);
    opacity: 0;
}

.modal h2 {
    color: #124e66;
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #124e66;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 5px;
    transition: all 0.2s ease;
}

.input-group:focus-within {
    background: #fff;
    box-shadow: 0 0 0 2px #124e66;
}

.input-group input,
.input-group select {
    background: transparent;
    border: none;
    padding: 12px 15px;
    width: 100%;
    font-size: 16px;
}

.reset-btn {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    transition: all 0.2s ease;
    margin-left: auto;
}

.reset-btn:hover {
    background: #e9ecef;
    color: #124e66;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
}

.appointment-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

/* Status Badges */
.status-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.status-badge.confirmed {
    background-color: #E3F2E7;
    color: #4CAF50;
}

.status-badge.pending {
    background-color: #FFF3E0;
    color: #FFA726;
}

.status-badge.cancelled {
    background-color: #FFEBEE;
    color: #F44336;
}

/* View Button */
.view-btn {
    background-color: #124e66;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.view-btn:hover {
    background-color: #0d3c4e;
    transform: translateY(-1px);
}

/* Table Hover Effects */
.appointment-table tbody tr:hover {
    background-color: #f5f5f5;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #EEFDFE;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.pagination-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 14px;
}

.entries-select {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    background-color: white;
    color: #124e66;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.entries-select:hover,
.entries-select:focus {
    border-color: #124e66;
}

.entries-select:focus {
    box-shadow: 0 0 0 2px rgba(18, 78, 102, 0.1);
}

.pagination-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background-color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #124e66;
    font-size: 14px;
    font-weight: 500;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #f8f9fa;
    border-color: #124e66;
}

.pagination-btn.active {
    background-color: #124e66;
    color: white;
    border-color: #124e66;
}

.pagination-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    background-color: #f8f9fa;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .greeting-card {
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
        margin-top: 15%;
    }

    .card-content {
        width: 100%;
        order: 2;
        margin-top: 20px;
    }

    .card-img {
        width: 100%;
        order: 1;
        justify-content: center;
        margin-bottom: 20px;
    }

    .greeting-image {
        position: relative;
        left: 0;
        width: 150px;
        height: auto;
        margin: 0 auto;
    }

    .table-header {
        padding: 0 10px;
    }
    
    .table-header h3 {
        font-size: 20px;
    }
    
    .add-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .pagination {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .pagination-info {
        width: 100%;
        justify-content: center;
    }
    
    .pagination-controls {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pagination-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Table Column Alignment */
.appointment-table th:nth-child(4),
.appointment-table th:nth-child(5),
.appointment-table td:nth-child(4),
.appointment-table td:nth-child(5) {
    text-align: center;
}

/* Status Badge Container */
.appointment-table td:nth-child(4) {
    display: table-cell;
    vertical-align: middle;
}

/* Action Button Container */
.appointment-table td:nth-child(5) {
    display: table-cell;
    vertical-align: middle;
}

/* Modal Styles */
.modal {
    display: none;
    /* Modal Responsive Styles */
    .modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .modal-content {
        background: white;
        border-radius: 20px;
        padding: 25px;
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        text-align: center; /* Center text content */
    }
    
    .appointment-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* Center form elements */
    }
    
    .form-group {
        margin-bottom: 15px;
        width: 100%;
        max-width: 400px; /* Limit width for better readability */
    }
    
    .input-group {
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center; /* Center input groups */
    }
    
    .input-group input,
    .input-group select {
        width: 100%;
        padding: 12px 15px 12px 40px;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        font-size: 16px;
        line-height: 1.5;
        box-sizing: border-box;
    }
    
    .input-group i {
        position: absolute;
        left: 12px;
        color: #666;
        font-size: 18px;
        pointer-events: none;
    }
    .input-group .fa-undo {
        position: absolute;
        left: 12px;
        color: #666;
        font-size: 18px;
        pointer-events: none;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .modal-content {
            width: 95%;
            padding: 20px;
        }
    
        .input-group input,
        .input-group select {
            font-size: 14px;
            padding: 10px 10px 10px 35px;
        }
    
        .input-group i {
            font-size: 16px;
            left: 10px;
        }

        .input-group.fa-undo {
            font-size: 16px;
            left: 10px;
        }
    }
    
    @media (max-width: 480px) {
        .modal-content {
            width: 98%;
            padding: 15px;
        }
    
        .form-group {
            margin-bottom: 10px;
        }
    
        .input-group input,
        .input-group select {
            font-size: 13px;
            padding: 8px 8px 8px 30px;
        }
    
        .input-group i {
            font-size: 14px;
            left: 8px;
        }

        .input-group.fa-undo {
            font-size: 14px;
            left: 8px;
        }
    }
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.patient-info {
    margin-top: 20px;
}

.info-row {
    display: flex;
    margin: 10px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.info-row label {
    font-weight: bold;
    width: 150px;
    color: #124e66;
}

.info-row span {
    flex: 1;
    color: #333;
}

.modal h2 {
    color: #124e66;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #EEFDFE;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-row label {
        width: 100%;
        margin-bottom: 5px;
    }
}

.tab-container {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    position: relative;
}

.tab-btn.active {
    color: #0056b3;
    font-weight: bold;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0056b3;
}

.table-container {
    overflow-x: auto;
}

/* Date Selection Styles */
.date-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.date-btn {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-btn:hover {
    background: #f0f0f0;
}

.date-btn.selected {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

/* Time Selection Styles */
.time-section {
    margin: 20px 0;
}

.hour-buttons,
.minute-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.time-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-btn:hover {
    background: #f0f0f0;
}

.time-btn.selected {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.time-section h4 {
    color: #333;
    margin-bottom: 10px;
}

/* Disabled state */
.time-btn.disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

/* Form Styles */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto;
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #f8f9fa;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #00bcd4;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
}

.input-group.fa-undo {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
}

.input-group input,
.input-group select {
    padding-left: 45px;
}

/* Button Style */
.book-now-btn {
    width: 100%;
    padding: 15px;
    background: #00bcd4;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background: #00acc1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

/* Grid Layout for Date/Time Selection */
.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.selection-grid .input-group {
    margin-bottom: 0;
}

/* Icon Styles */
.location-icon,
.user-icon,
.luggage-icon {
    color: #00bcd4;
}
