/* Booking Maintain Page Styles */
.long-title.header-styling h3 {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 110, 107, 0.3);
}

#pitchDropdownContainer {
    margin: 20px auto;
    text-align: center;
}

#pitchDropdown {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    border: none;
    color: black;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 110, 107, 0.3);
    transition: all 0.3s ease;
    margin: auto;
}

#pitchDropdown:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 110, 107, 0.4);
}

#pitchDropdown:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 110, 107, 0.3);
}

.booking-header {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 110, 107, 0.3);
}

    .booking-header h3 {
        margin-bottom: 10px;
        font-weight: 600;
    }

.filters-section {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.filters-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.filter-item {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d2d2d;
}

.booking-content {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 100%;
}

.booking-maintain-container {
    padding: 20px;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.booking-content-header {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    padding: 20px 25px;
}

.booking-content-title {
    margin: 0;
    font-weight: 600;
}

.booking-grid-container {
    padding: 25px;
    width: 100%;
    overflow-x: auto;
    background: white;
}

/* Ensure the main grid fits the page width */
#ddgPitchBookingItems {
    width: 100% !important;
    min-width: 100%;
}

/* Make the grid responsive and fit the container */
.dx-datagrid {
    width: 100% !important;
    max-width: 100%;
}

/* Ensure columns don't overflow */
.dx-datagrid-headers {
    width: 100%;
}

.dx-datagrid-rowsview {
    width: 100%;
}

.detail-item {
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .detail-item:last-child {
        border-bottom: none;
    }

    .detail-item strong {
        color: #2d2d2d;
        font-weight: 600;
    }

.text-primary {
    color: #009E46 !important;
    font-weight: 600;
}

.mobile-optimized-grid {
    border-radius: 10px;
    overflow: hidden;
}

.booking-grid-enhanced {
    font-size: 14px;
}

.booking-entries-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

    .booking-entries-section h6 {
        color: #2d2d2d;
        font-weight: 600;
        margin-bottom: 15px;
    }

/* Create Booking Form Specific Styles */
.admin-booking-form {
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.booking-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: transparent !important;
}

.booking-card-header {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    border: none;
    padding: 25px;
    text-align: center;
}

.booking-card-header h3 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.8rem;
}

.booking-card-header p {
    opacity: 0.9;
    font-size: 1rem;
    margin: 0;
}

.booking-card .card-body {
    padding: 30px;
    background: white;
}

/* Form Field Styling */
.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.filter-item {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d2d2d;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.filter-label i {
    margin-right: 8px;
    color: #009E46;
    width: 16px;
    text-align: center;
}

/* Form Controls */
.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    background: white;
    color: #2d2d2d;
    padding: 12px 16px;
    font-size: 1rem;
    padding-left: 35px !important;
}

.form-control:focus, .form-select:focus {
    border-color: #009E46;
    box-shadow: 0 0 0 0.2rem rgba(0, 158, 70, 0.25);
    background: white;
}

.form-control::placeholder {
    color: #6c757d;
}

/* Reason Section */
.detail-section {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 15px;
}

.detail-section h5 {
    margin-bottom: 20px;
    color: #2d2d2d;
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.detail-section h5 i {
    margin-right: 10px;
    color: #009E46;
}

/* Time Selection Container */
.time-selection-container {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.time-selection-container h5 {
    color: #2d2d2d;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.time-selection-container h5 i {
    margin-right: 10px;
    color: #009E46;
}

/* Submit Button */
.btn-primary {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    padding: 15px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 110, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 110, 107, 0.4);
    background: linear-gradient(135deg, #009E46 0%, #00B050 100%);
}

.btn-primary i {
    margin-right: 8px;
}

/* Booking Details Grid Section */
.booking-content-header {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
}

.booking-content-title {
    margin: 0;
    font-weight: 600;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.booking-content-title i {
    margin-right: 10px;
}

.booking-grid-container {
    padding: 25px;
    background: white;
    border-radius: 0 0 15px 15px;
    border: 1px solid #e9ecef;
    border-top: none;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Ensure the main grid fits the page width */
#ddgPitchBookingItems {
    width: 100% !important;
    min-width: 100%;
}

/* Make the grid responsive and fit the container */
.dx-datagrid {
    width: 100% !important;
    max-width: 100%;
}

/* Ensure columns don't overflow */
.dx-datagrid-headers {
    width: 100%;
}

.dx-datagrid-rowsview {
    width: 100%;
}

.detail-item {
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .detail-item:last-child {
        border-bottom: none;
    }

    .detail-item strong {
        color: #2d2d2d;
        font-weight: 600;
    }

.text-primary {
    color: #009E46 !important;
    font-weight: 600;
}

.mobile-optimized-grid {
    border-radius: 10px;
    overflow: hidden;
}

.booking-grid-enhanced {
    font-size: 14px;
}

.booking-entries-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

    .booking-entries-section h6 {
        color: #2d2d2d;
        font-weight: 600;
        margin-bottom: 15px;
    }

/* Button Styles */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    border: none;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 110, 107, 0.4);
    }

.btn-secondary {
    background: white;
    border: 1px solid #e9ecef;
    color: #2d2d2d;
}

.btn-success {
    background: linear-gradient(135deg, #009E46 0%, #00B050 100%);
    border: none;
}

.alert {
    border-radius: 10px;
    border: none;
}

/* DevExtreme SelectBox Styling for Light Theme */
.dx-selectbox {
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease !important;
    background: white !important;
    color: #2d2d2d !important;
}

.dx-selectbox.dx-state-focused {
    border-color: #009E46 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 158, 70, 0.25) !important;
}

.dx-selectbox .dx-texteditor-input {
    background: transparent !important;
    color: #2d2d2d !important;
    border: none !important;
}

.dx-selectbox .dx-texteditor-input::placeholder {
    color: #6c757d !important;
}

.dx-selectbox .dx-dropdowneditor-button {
    background: transparent !important;
    border: none !important;
}

.dx-selectbox .dx-dropdowneditor-button .dx-icon {
    color: #009E46 !important;
}

/* DevExtreme DataGrid Styling for Light Theme */
.dx-datagrid {
    background: white !important;
    color: #2d2d2d !important;
}

.dx-datagrid-headers {
    background: #f8f9fa !important;
    color: #2d2d2d !important;
}

.dx-datagrid-headers .dx-datagrid-text-content {
    color: #2d2d2d !important;
}

.dx-datagrid-rowsview {
    background: white !important;
}

.dx-datagrid-rowsview .dx-row {
    background: white !important;
    color: #2d2d2d !important;
}

.dx-datagrid-rowsview .dx-row.dx-row-alt {
    background: #f8f9fa !important;
}

.dx-datagrid-rowsview .dx-row:hover {
    background: #e9ecef !important;
}

.dx-datagrid-rowsview .dx-row.dx-row-alt:hover {
    background: #dee2e6 !important;
}

.dx-datagrid-rowsview .dx-row > td {
    color: #2d2d2d !important;
    border-color: #e9ecef !important;
}

.dx-datagrid-search-panel {
    background: white !important;
}

.dx-datagrid-search-panel .dx-texteditor {
    background: white !important;
    border-color: #e9ecef !important;
}

.dx-datagrid-search-panel .dx-texteditor-input {
    color: #2d2d2d !important;
}

.dx-datagrid-search-panel .dx-texteditor-input::placeholder {
    color: #6c757d !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-maintain-container {
        padding: 10px;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .booking-header {
        padding: 20px;
    }

        .booking-header h3 {
            font-size: 1.5rem;
        }

    .booking-grid-container {
        padding: 10px;
        overflow-x: auto;
    }

    .admin-booking-form {
        padding: 15px;
    }

    .booking-card-header {
        padding: 15px;
    }

    .time-selection-container {
        padding: 15px;
    }

    /* Create Booking Form Mobile Styles */
    .admin-booking-form {
        padding: 20px;
        margin-bottom: 20px;
    }

    .booking-card-header {
        padding: 20px;
    }

    .booking-card-header h3 {
        font-size: 1.5rem;
    }

    .booking-card .card-body {
        padding: 20px;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    .detail-section,
    .time-selection-container {
        padding: 20px;
        margin-bottom: 20px;
    }

    .detail-section h5,
    .time-selection-container h5 {
        font-size: 1.1rem;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .dx-datagrid-headers {
        font-size: 10px;
    }

        .dx-datagrid-headers .dx-datagrid-text-content {
            font-size: 10px;
        }

    /* Mobile-specific grid styling */
    .dx-datagrid-rowsview .dx-datagrid-table {
        font-size: 11px;
    }

        .dx-datagrid-rowsview .dx-datagrid-table .dx-row > td {
            padding: 8px 4px;
        }

    /* Mobile button adjustments */
    .btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    /* Mobile filter adjustments */
    .filters-section {
        padding: 15px;
    }

    .filters-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .filter-label {
        font-size: 14px;
    }

    /* Mobile detail section adjustments */
    .detail-section {
        padding: 15px;
        margin-bottom: 15px;
    }

        .detail-section h5 {
            font-size: 16px;
            margin-bottom: 15px;
        }

    /* Mobile booking entries grid */
    .booking-entries-section h6 {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .booking-maintain-container {
        padding: 5px;
    }

    .booking-header {
        padding: 15px;
    }

        .booking-header h3 {
            font-size: 1.3rem;
        }

    .booking-grid-container {
        padding: 5px;
    }

    /* Create Booking Form Extra Small Mobile Styles */
    .admin-booking-form {
        padding: 15px;
    }

    .booking-card-header {
        padding: 15px;
    }

    .booking-card-header h3 {
        font-size: 1.3rem;
    }

    .booking-card .card-body {
        padding: 15px;
    }

    .filters-grid {
        gap: 15px;
        margin-bottom: 20px;
    }

    .detail-section,
    .time-selection-container {
        padding: 15px;
        margin-bottom: 15px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .dx-datagrid-headers {
        font-size: 9px;
    }

    .dx-datagrid-rowsview .dx-datagrid-table {
        font-size: 10px;
    }

        .dx-datagrid-rowsview .dx-datagrid-table .dx-row > td {
            padding: 6px 2px;
        }

    /* Smaller buttons for mobile */
    .btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .filters-section {
        padding: 10px;
    }

    .detail-section {
        padding: 5px;
    }

        /* Extra small mobile detail grid */
        .detail-section .dx-datagrid {
            font-size: 9px;
            min-width: 100%;
        }

        .detail-section .dx-datagrid-headers {
            font-size: 8px;
        }

        .detail-section .dx-datagrid-rowsview .dx-datagrid-table {
            font-size: 9px;
        }

            .detail-section .dx-datagrid-rowsview .dx-datagrid-table .dx-row > td {
                padding: 4px 2px;
                white-space: nowrap;
            }

        /* Extra small mobile detail grid search */
        .detail-section .dx-datagrid-search-panel .dx-texteditor {
            height: 30px;
            font-size: 11px;
        }

        /* Ensure horizontal scrolling for detail grid */
        .detail-section .booking-grid-enhanced {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            max-width: 100%;
        }

        /* Mobile detail grid container */
        .detail-section .dx-datagrid-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
}

@media (max-width: 1200px) {
    .booking-grid-container {
        overflow-x: auto;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .dx-datagrid-rowsview .dx-row {
        min-height: 44px;
    }

        .dx-datagrid-rowsview .dx-row > td {
            min-height: 44px;
        }

    /* Better touch targets for buttons */
    .dx-datagrid-command-edit,
    .dx-datagrid-command-delete {
        min-width: 44px;
        min-height: 44px;
    }

    /* Mobile-friendly pager */
    .dx-datagrid-pager {
        padding: 10px 0;
    }

    .dx-pager .dx-pages .dx-page {
        min-width: 44px;
        min-height: 44px;
    }

    /* Mobile touch improvements */
    .dx-datagrid-rowsview.touch-active {
        background-color: rgba(0, 123, 255, 0.05);
    }

    /* Mobile-friendly search panel */
    .dx-datagrid-search-panel {
        margin-bottom: 10px;
    }

        .dx-datagrid-search-panel .dx-texteditor {
            height: 40px;
        }

    /* Mobile-friendly detail expansion */
    .dx-datagrid-master-detail-row .dx-datagrid-master-detail-cell {
        padding: 10px;
    }

    /* Mobile-friendly filters */
    .dx-selectbox {
        height: 40px;
    }

        .dx-selectbox .dx-texteditor-input {
            height: 38px;
            line-height: 38px;
        }

    /* Detail grid mobile improvements */
    .detail-section {
        padding: 10px;
        overflow-x: auto;
    }
        .detail-section .dx-datagrid-headers {
            font-size: 10px;
        }

        .detail-section .dx-datagrid-rowsview .dx-datagrid-table {
            font-size: 11px;
        }

            .detail-section .dx-datagrid-rowsview .dx-datagrid-table .dx-row > td {
                padding: 6px 3px;
                white-space: nowrap;
            }

        /* Ensure detail grid container is scrollable */
        .detail-section .booking-grid-enhanced {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        /* Mobile detail grid column adjustments */
        .detail-section .dx-datagrid .dx-column-indicators {
            display: none;
        }

        /* Mobile-friendly detail grid search */
        .detail-section .dx-datagrid-search-panel {
            margin-bottom: 8px;
        }

            .detail-section .dx-datagrid-search-panel .dx-texteditor {
                height: 35px;
                font-size: 12px;
            }
}

/* Booking Confirmation Page Styles */
.booking-confirmation-header {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 110, 107, 0.3);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.confirmation-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.confirmation-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.booking-summary-card {
    margin-bottom: 2rem;
}

.booking-summary-header {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    border: none;
    padding: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

    .summary-item:last-child {
        border-bottom: none;
    }

.summary-label {
    font-weight: 600;
    color: #2d2d2d;
}

.summary-value {
    font-weight: 500;
    color: #2d2d2d;
}

.reference-number {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #009E46;
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.total-price-item {
    border-top: 2px solid #009E46;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.total-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #009E46;
}

.booking-details-header {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    border: none;
    padding: 1.5rem;
}

.booking-confirmation-grid {
    border-radius: 10px;
    overflow: hidden;
}

.booking-actions .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

    .booking-actions .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

.booking-info-box .alert {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.booking-info-box ul {
    padding-left: 1.5rem;
}

.booking-info-box li {
    margin-bottom: 0.5rem;
}

/* Booking Confirmation Responsive Design */
@media (max-width: 768px) {
    .confirmation-title {
        font-size: 2rem;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .booking-actions .btn {
        margin-bottom: 1rem;
    }
}

/* Modern Booking Modal Styles */
.dx-popup-wrapper .dx-popup {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: none;
    overflow: hidden;
}

.dx-popup-wrapper .dx-popup-title {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    padding: 20px 24px;
    border-bottom: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .dx-popup-wrapper .dx-popup-title .dx-toolbar {
        background: transparent;
        border: none;
    }

    .dx-popup-wrapper .dx-popup-title .dx-toolbar-items-container {
        background: transparent;
    }

    .dx-popup-wrapper .dx-popup-title .dx-toolbar-item {
        background: transparent;
    }

    .dx-popup-wrapper .dx-popup-title .dx-button {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        border-radius: 6px;
        padding: 8px 16px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .dx-popup-wrapper .dx-popup-title .dx-button:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-1px);
        }

        .dx-popup-wrapper .dx-popup-title .dx-button.dx-button-mode-text {
            background: transparent;
            border: none;
            color: white;
            font-size: 16px;
            padding: 4px 8px;
        }

            .dx-popup-wrapper .dx-popup-title .dx-button.dx-button-mode-text:hover {
                background: rgba(255, 255, 255, 0.1);
                border-radius: 4px;
            }

.dx-popup-wrapper .dx-popup-content {
    padding: 24px;
    background: white;
}

.dx-popup-wrapper .dx-form {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

    .dx-popup-wrapper .dx-form .dx-layout-manager {
        background: transparent;
    }

        .dx-popup-wrapper .dx-form .dx-layout-manager .dx-layout-manager-one-col {
            background: transparent;
        }

    .dx-popup-wrapper .dx-form .dx-field-item {
        margin-bottom: 20px;
        background: transparent;
    }

    .dx-popup-wrapper .dx-form .dx-field-item-label {
        font-weight: 600;
        color: #2d2d2d;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .dx-popup-wrapper .dx-form .dx-field-item-content {
        background: transparent;
    }

    .dx-popup-wrapper .dx-form .dx-texteditor {
        border-radius: 6px;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
        background: white;
        color: #2d2d2d;
    }

        .dx-popup-wrapper .dx-form .dx-texteditor.dx-state-focused {
            border-color: #009E46;
            box-shadow: 0 0 0 3px rgba(0, 158, 70, 0.1);
        }

        .dx-popup-wrapper .dx-form .dx-texteditor.dx-state-hover {
            border-color: #009E46;
        }

    .dx-popup-wrapper .dx-form .dx-selectbox {
        border-radius: 6px;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
        background: white;
        color: #2d2d2d;
    }

        .dx-popup-wrapper .dx-form .dx-selectbox.dx-state-focused {
            border-color: #009E46;
            box-shadow: 0 0 0 3px rgba(0, 158, 70, 0.1);
        }

    .dx-popup-wrapper .dx-form .dx-datebox {
        border-radius: 6px;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
        background: white;
        color: #2d2d2d;
    }

        .dx-popup-wrapper .dx-form .dx-datebox.dx-state-focused {
            border-color: #009E46;
            box-shadow: 0 0 0 3px rgba(0, 158, 70, 0.1);
        }

/* Close button styling */
.dx-popup-wrapper .dx-popup-title .dx-closebutton {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 12px;
}

    .dx-popup-wrapper .dx-popup-title .dx-closebutton:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    .dx-popup-wrapper .dx-popup-title .dx-closebutton::before {
        content: "×";
        font-size: 20px;
        font-weight: bold;
        color: white;
    }

/* Responsive design for modal */
@media (max-width: 768px) {
    .dx-popup-wrapper .dx-popup {
        margin: 16px;
        max-width: calc(100vw - 32px);
        max-height: calc(100vh - 32px);
    }

    .dx-popup-wrapper .dx-popup-title {
        padding: 16px 20px;
        font-size: 16px;
    }

    .dx-popup-wrapper .dx-popup-content {
        padding: 16px;
    }

    .dx-popup-wrapper .dx-form {
        padding: 16px;
    }
}

/* Animation for modal appearance */
.dx-popup-wrapper .dx-popup {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Success/Error message styling */
.dx-popup-wrapper .dx-notification {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
}

    .dx-popup-wrapper .dx-notification.dx-notification-success {
        background: #d4edda;
        color: #155724;
        border-left: 4px solid #28a745;
    }

    .dx-popup-wrapper .dx-notification.dx-notification-error {
        background: #f8d7da;
        color: #721c24;
        border-left: 4px solid #dc3545;
    }

/* Request Pitch Booking Page Styles */
.request-booking-container {
    padding: 20px;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.request-booking-form {
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.request-booking-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: transparent !important;
}

.request-booking-card-header {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    border: none;
    padding: 25px;
    text-align: center;
}

.request-booking-card-header h3 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.8rem;
}

.request-booking-card-header p {
    opacity: 0.9;
    font-size: 1rem;
    margin: 0;
}

.request-booking-card .card-body {
    padding: 30px;
    background: white;
}

/* Form Sections */
.form-section {
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-header h4 {
    margin: 0;
    color: #2d2d2d;
    font-weight: 600;
    font-size: 1.2rem;
}

.section-header i {
    margin-right: 10px;
    color: #009E46;
    width: 20px;
    text-align: center;
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d2d2d;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.form-label i {
    margin-right: 8px;
    color: #009E46;
    width: 16px;
    text-align: center;
}

.input-wrapper {
    position: relative;
}

/* Modern Form Controls */
.modern-input,
.modern-select,
.modern-textarea,
.modern-datebox,
.modern-timebox {
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease !important;
    background: white !important;
    color: #2d2d2d !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    width: 100% !important;
}

.modern-input:focus,
.modern-select:focus,
.modern-textarea:focus,
.modern-datebox:focus,
.modern-timebox:focus {
    border-color: #009E46 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 158, 70, 0.25) !important;
    background: white !important;
}

.modern-input::placeholder,
.modern-textarea::placeholder {
    color: #6c757d !important;
}

.modern-textarea {
    min-height: 100px !important;
    resize: vertical !important;
}

/* Radio Group Styling */
.modern-radiogroup {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.modern-radiogroup .dx-radiobutton {
    margin-right: 20px !important;
}

.modern-radiogroup .dx-radiobutton-checked .dx-radiobutton-icon-checked {
    background-color: #009E46 !important;
    border-color: #009E46 !important;
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.btn-submit-booking {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    padding: 15px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 110, 107, 0.3);
    min-height: 60px;
}

.btn-submit-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 110, 107, 0.4);
    background: linear-gradient(135deg, #009E46 0%, #00B050 100%);
}

.btn-submit-booking i {
    margin-right: 8px;
}

/* Booking Details Section */
.booking-details-section {
    margin-top: 30px;
}

.booking-details-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: transparent !important;
}

.booking-details-header {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    border: none;
    padding: 25px;
    text-align: center;
}

.booking-details-header h3 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.8rem;
}

.booking-details-header p {
    opacity: 0.9;
    font-size: 1rem;
    margin: 0;
}

.booking-details-card .card-body {
    padding: 30px;
    background: white;
}

/* Modern DataGrid */
.modern-datagrid {
    border-radius: 10px !important;
    overflow: hidden !important;
    background: white !important;
}

.modern-datagrid .dx-datagrid-headers {
    background: #f8f9fa !important;
    color: #2d2d2d !important;
}

.modern-datagrid .dx-datagrid-headers .dx-datagrid-text-content {
    color: #2d2d2d !important;
    font-weight: 600 !important;
}

.modern-datagrid .dx-datagrid-rowsview {
    background: white !important;
}

.modern-datagrid .dx-datagrid-rowsview .dx-row {
    background: white !important;
    color: #2d2d2d !important;
}

.modern-datagrid .dx-datagrid-rowsview .dx-row.dx-row-alt {
    background: #f8f9fa !important;
}

.modern-datagrid .dx-datagrid-rowsview .dx-row:hover {
    background: #e9ecef !important;
}

.modern-datagrid .dx-datagrid-rowsview .dx-row > td {
    color: #2d2d2d !important;
    border-color: #e9ecef !important;
}

/* Alert Styling */
.alert {
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

/* Responsive Design for Request Booking */
@media (max-width: 768px) {
    .request-booking-container {
        padding: 10px;
    }

    .request-booking-form {
        padding: 20px;
        margin-bottom: 20px;
    }

    .request-booking-card-header {
        padding: 20px;
    }

    .request-booking-card-header h3 {
        font-size: 1.5rem;
    }

    .request-booking-card .card-body {
        padding: 20px;
    }

    .form-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .section-header h4 {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 15px;
    }

    .form-label {
        font-size: 14px;
    }

    .modern-input,
    .modern-select,
    .modern-textarea,
    .modern-datebox,
    .modern-timebox {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }

    .modern-textarea {
        min-height: 80px !important;
    }

    .btn-submit-booking {
        padding: 12px 24px;
        font-size: 1rem;
        min-height: 50px;
    }

    .booking-details-header {
        padding: 20px;
    }

    .booking-details-header h3 {
        font-size: 1.5rem;
    }

    .booking-details-card .card-body {
        padding: 20px;
    }

    /* Mobile grid adjustments */
    .modern-datagrid {
        font-size: 11px;
        min-width: 600px;
    }

    .modern-datagrid .dx-datagrid-headers {
        font-size: 10px;
    }

    .modern-datagrid .dx-datagrid-headers .dx-datagrid-text-content {
        font-size: 10px;
    }

    .modern-datagrid .dx-datagrid-rowsview .dx-datagrid-table {
        font-size: 11px;
    }

    .modern-datagrid .dx-datagrid-rowsview .dx-datagrid-table .dx-row > td {
        padding: 8px 4px;
    }
}

@media (max-width: 480px) {
    .request-booking-container {
        padding: 5px;
    }

    .request-booking-form {
        padding: 15px;
    }

    .request-booking-card-header {
        padding: 15px;
    }

    .request-booking-card-header h3 {
        font-size: 1.3rem;
    }

    .request-booking-card .card-body {
        padding: 15px;
    }

    .form-section {
        padding: 15px;
        margin-bottom: 15px;
    }

    .section-header h4 {
        font-size: 1rem;
    }

    .form-row {
        gap: 15px;
        margin-bottom: 10px;
    }

    .form-label {
        font-size: 13px;
    }

    .modern-input,
    .modern-select,
    .modern-textarea,
    .modern-datebox,
    .modern-timebox {
        padding: 8px 10px !important;
        font-size: 13px !important;
    }

    .modern-textarea {
        min-height: 70px !important;
    }

    .btn-submit-booking {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 45px;
    }

    .booking-details-header {
        padding: 15px;
    }

    .booking-details-header h3 {
        font-size: 1.3rem;
    }

    .booking-details-card .card-body {
        padding: 15px;
    }

    /* Extra small mobile grid */
    .modern-datagrid {
        font-size: 10px;
        min-width: 500px;
    }

    .modern-datagrid .dx-datagrid-headers {
        font-size: 9px;
    }

    .modern-datagrid .dx-datagrid-rowsview .dx-datagrid-table {
        font-size: 10px;
    }

    .modern-datagrid .dx-datagrid-rowsview .dx-datagrid-table .dx-row > td {
        padding: 6px 2px;
    }

    /* Mobile radio group */
    .modern-radiogroup {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .modern-radiogroup .dx-radiobutton {
        margin-right: 0 !important;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .modern-input,
    .modern-select,
    .modern-textarea,
    .modern-datebox,
    .modern-timebox {
        min-height: 44px !important;
    }

    .modern-textarea {
        min-height: 80px !important;
    }

    /* Better touch targets for buttons */
    .btn-submit-booking {
        min-height: 50px;
    }

    /* Mobile-friendly form sections */
    .form-section {
        margin-bottom: 15px;
    }

    /* Mobile-friendly alerts */
    .alert {
        margin-bottom: 15px;
        padding: 12px 16px;
    }

    /* Mobile-friendly grid scrolling */
    .booking-details-card .card-body {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modern-datagrid {
        min-width: 100%;
    }
}

/* Animation for form sections */
.form-section {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success/Error message styling */
.alert {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

/* DevExtreme specific styling for Request Booking */
.dx-texteditor.dx-editor-outlined {
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease !important;
    background: white !important;
    color: #2d2d2d !important;
    padding-left: 25px !important;
}

.dx-texteditor.dx-editor-outlined.dx-state-focused {
    border-color: #009E46 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 158, 70, 0.25) !important;
}

.dx-texteditor.dx-editor-outlined .dx-texteditor-input {
    background: transparent !important;
    color: #2d2d2d !important;
    border: none !important;
}

.dx-texteditor.dx-editor-outlined .dx-texteditor-input::placeholder {
    color: #6c757d !important;
}

.dx-dropdowneditor.dx-editor-outlined {
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease !important;
    background: white !important;
    color: #2d2d2d !important;
}

.dx-dropdowneditor.dx-editor-outlined.dx-state-focused {
    border-color: #009E46 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 158, 70, 0.25) !important;
}

.dx-dropdowneditor.dx-editor-outlined .dx-texteditor-input {
    background: transparent !important;
    color: #2d2d2d !important;
    border: none !important;
}

.dx-dropdowneditor.dx-editor-outlined .dx-dropdowneditor-button {
    background: transparent !important;
    border: none !important;
}

.dx-dropdowneditor.dx-editor-outlined .dx-dropdowneditor-button .dx-icon {
    color: #009E46 !important;
}

.dx-numberbox.dx-editor-outlined {
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease !important;
    background: white !important;
    color: #2d2d2d !important;
}

.dx-numberbox.dx-editor-outlined.dx-state-focused {
    border-color: #009E46 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 158, 70, 0.25) !important;
}

.dx-numberbox.dx-editor-outlined .dx-texteditor-input {
    background: transparent !important;
    color: #2d2d2d !important;
    border: none !important;
}

.dx-datebox.dx-editor-outlined {
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease !important;
    background: white !important;
    color: #2d2d2d !important;
}

.dx-datebox.dx-editor-outlined.dx-state-focused {
    border-color: #009E46 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 158, 70, 0.25) !important;
}

.dx-datebox.dx-editor-outlined .dx-texteditor-input {
    background: transparent !important;
    color: #2d2d2d !important;
    border: none !important;
}

.dx-datebox.dx-editor-outlined .dx-dropdowneditor-button {
    background: transparent !important;
    border: none !important;
}

.dx-datebox.dx-editor-outlined .dx-dropdowneditor-button .dx-icon {
    color: #009E46 !important;
}

/* Radio Group Styling */
.dx-radiogroup .dx-radiobutton {
    margin-right: 20px;
}

.dx-radiogroup .dx-radiobutton-checked .dx-radiobutton-icon-checked {
    background-color: #009E46 !important;
    border-color: #009E46 !important;
}

.dx-radiogroup .dx-radiobutton-icon {
    border-color: #e9ecef !important;
}

.dx-radiogroup .dx-radiobutton-icon:hover {
    border-color: #009E46 !important;
}

/* Text Area Styling */
.dx-textarea.dx-editor-outlined {
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease !important;
    background: white !important;
    color: #2d2d2d !important;
    min-height: 100px !important;
}

.dx-textarea.dx-editor-outlined.dx-state-focused {
    border-color: #009E46 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 158, 70, 0.25) !important;
}

.dx-textarea.dx-editor-outlined .dx-texteditor-input {
    background: transparent !important;
    color: #2d2d2d !important;
    border: none !important;
    min-height: 100px !important;
    resize: vertical !important;
}

.dx-textarea.dx-editor-outlined .dx-texteditor-input::placeholder {
    color: #6c757d !important;
}

/* ========================================
   MY BOOKINGS PAGE SPECIFIC STYLES
   ======================================== */

/* Status color coding */
.redCol { background-color: #ff8484; }
.pinkCol { background-color: #ffc9c9; }
.paidCol { background-color: #82cced; }
.approvedCol { background-color: #82ed89; }
.reqCol { background-color: #e3ed82; }
.procCol { background-color: #edbc82; }

.status-processing { 
    background-color: #edbc82 !important; 
    color: #856404 !important; 
}

.status-approved-paid { 
    background-color: #28a745 !important; 
    color: white !important; 
}

.status-declined { 
    background-color: #dc3545 !important; 
    color: white !important; 
}

/* Status Badge Styling */
.status-badge {
    padding: 4px 8px !important;
    border-radius: 12px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    display: inline-block !important;
    min-width: 80px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.status-requested { 
    background-color: #afdfe3 !important; 
    color: #2d2d2d !important; 
}

.status-in-process { 
    background-color: #f0ad11 !important; 
    color: #2d2d2d !important; 
}

.status-approved-unpaid { 
    background-color: #11e5f0 !important; 
    color: #2d2d2d !important; 
}

.status-approved-paid { 
    background-color: #11f066 !important; 
    color: #2d2d2d !important; 
}

.status-cancelled { 
    background-color: #f08bc9 !important; 
    color: #2d2d2d !important; 
}

.status-declined { 
    background-color: #f51b1f !important; 
    color: white !important; 
}

/* My Bookings Page Specific Styles */
.my-bookings-container {
    margin-top: 5vh;
    padding: 20px;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.my-bookings-header {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 110, 107, 0.3);
    text-align: center;
}

.my-bookings-header h3 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 2rem;
}

.my-bookings-header p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin: 0;
}

.my-bookings-content {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 100%;
}

.my-bookings-content-header {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
}

.my-bookings-content-title {
    margin: 0;
    font-weight: 600;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.my-bookings-content-title i {
    margin-right: 10px;
}

.my-bookings-grid-container {
    padding: 25px;
    background: white;
    border-radius: 0 0 15px 15px;
    border: 1px solid #e9ecef;
    border-top: none;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Enhanced DataGrid Styling */
#ddgMyBookings {
    width: 100% !important;
    min-width: 800px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

#ddgMyBookings .dx-datagrid-headers {
    background: #f8f9fa !important;
    color: #2d2d2d !important;
    font-weight: 600 !important;
    border-bottom: 2px solid #e9ecef !important;
}

#ddgMyBookings .dx-datagrid-headers .dx-datagrid-text-content {
    color: #2d2d2d !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

#ddgMyBookings .dx-datagrid-rowsview {
    background: white !important;
}

#ddgMyBookings .dx-datagrid-rowsview .dx-row {
    background: white !important;
    color: #2d2d2d !important;
    transition: background-color 0.2s ease !important;
    border-bottom: 1px solid #e9ecef !important;
}

#ddgMyBookings .dx-datagrid-rowsview .dx-row.dx-row-alt {
    background: #f8f9fa !important;
}

#ddgMyBookings .dx-datagrid-rowsview .dx-row:hover {
    background: #e9ecef !important;
}

#ddgMyBookings .dx-datagrid-rowsview .dx-row > td {
    color: #2d2d2d !important;
    border-color: #e9ecef !important;
    padding: 12px 8px !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Ensure columns don't get cut off */
#ddgMyBookings .dx-datagrid-table {
    table-layout: fixed !important;
}

#ddgMyBookings .dx-datagrid-table .dx-row > td {
    overflow: visible !important;
    white-space: normal !important;
}

/* Booking Reference Styling */
.booking-reference {
    font-family: 'Courier New', monospace !important;
    font-weight: 700 !important;
    color: #009E46 !important;
    background: #f8f9fa !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    border: 1px solid #e9ecef !important;
    font-size: 0.9rem !important;
    display: inline-block !important;
    white-space: nowrap !important;
    min-width: fit-content !important;
}

/* Action Button Styling */
.action-button {
    background: linear-gradient(135deg, #006E6B 0%, #009E46 100%) !important;
    border: none !important;
    border-radius: 6px !important;
    color: white !important;
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin: 0 2px !important;
}

.action-button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 110, 107, 0.3) !important;
    background: linear-gradient(135deg, #009E46 0%, #00B050 100%) !important;
}

/* Search Panel Styling */
#ddgMyBookings .dx-datagrid-search-panel {
    background: white !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    margin-bottom: 15px !important;
}

#ddgMyBookings .dx-datagrid-search-panel .dx-texteditor {
    background: white !important;
    border-color: #e9ecef !important;
    border-radius: 8px !important;
}

#ddgMyBookings .dx-datagrid-search-panel .dx-texteditor-input {
    color: #2d2d2d !important;
    font-size: 14px !important;
}

#ddgMyBookings .dx-datagrid-search-panel .dx-texteditor-input::placeholder {
    color: #6c757d !important;
}

/* Filter Row Styling */
#ddgMyBookings .dx-datagrid-filter-row {
    background: #f8f9fa !important;
    border-bottom: 1px solid #e9ecef !important;
}

#ddgMyBookings .dx-datagrid-filter-row .dx-texteditor {
    background: white !important;
    border: 1px solid #e9ecef !important;
    border-radius: 4px !important;
}

/* Pager Styling */
#ddgMyBookings .dx-datagrid-pager {
    background: #f8f9fa !important;
    border-top: 1px solid #e9ecef !important;
    padding: 10px 0 !important;
}

#ddgMyBookings .dx-pager .dx-pages .dx-page {
    background: white !important;
    border: 1px solid #e9ecef !important;
    color: #2d2d2d !important;
    border-radius: 4px !important;
}

#ddgMyBookings .dx-pager .dx-pages .dx-page.dx-selection {
    background: #009E46 !important;
    color: white !important;
    border-color: #009E46 !important;
}

/* Empty State Styling */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.empty-state i {
    font-size: 3rem;
    color: #dee2e6;
    margin-bottom: 15px;
}

.empty-state h4 {
    color: #6c757d;
    margin-bottom: 10px;
}

.empty-state p {
    color: #6c757d;
    margin: 0;
}

/* Loading state */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 15px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #009E46;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for My Bookings */
@media (max-width: 768px) {
    .my-bookings-container {
        padding: 10px;
    }

    .my-bookings-header {
        padding: 20px;
        margin-bottom: 20px;
    }

    .my-bookings-header h3 {
        font-size: 1.5rem;
    }

    .my-bookings-header p {
        font-size: 1rem;
    }

    .my-bookings-grid-container {
        padding: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .booking-detail-section {
        padding: 15px;
        margin-top: 15px;
    }

    .booking-detail-section h5 {
        font-size: 1rem;
    }

    /* Mobile grid adjustments - KEEP MODERN STYLING */
    #ddgMyBookings {
        font-size: 12px !important;
        min-width: 700px !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        background: white !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    #ddgMyBookings .dx-datagrid-headers {
        background: #f8f9fa !important;
        color: #2d2d2d !important;
        font-weight: 600 !important;
        border-bottom: 2px solid #e9ecef !important;
        font-size: 11px !important;
    }

    #ddgMyBookings .dx-datagrid-headers .dx-datagrid-text-content {
        color: #2d2d2d !important;
        font-weight: 600 !important;
        font-size: 11px !important;
    }

    #ddgMyBookings .dx-datagrid-rowsview .dx-datagrid-table {
        font-size: 12px !important;
    }

    #ddgMyBookings .dx-datagrid-rowsview .dx-datagrid-table .dx-row > td {
        padding: 8px 4px !important;
        color: #2d2d2d !important;
        border-color: #e9ecef !important;
        vertical-align: middle !important;
    }

    /* Mobile status badges - KEEP MODERN STYLING */
    .status-badge {
        font-size: 0.7rem !important;
        padding: 3px 6px !important;
        min-width: 60px !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        text-align: center !important;
        display: inline-block !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    .status-requested,
    .status-in-process,
    .status-approved-unpaid,
    .status-approved-paid,
    .status-cancelled,
    .status-declined {
        font-size: 0.7rem !important;
        padding: 3px 6px !important;
        min-width: 60px !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        text-align: center !important;
        display: inline-block !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    /* Mobile booking reference - KEEP MODERN STYLING */
    .booking-reference {
        font-size: 0.8rem !important;
        padding: 3px 6px !important;
        font-family: 'Courier New', monospace !important;
        font-weight: 700 !important;
        color: #009E46 !important;
        background: #f8f9fa !important;
        border-radius: 4px !important;
        border: 1px solid #e9ecef !important;
    }

    /* Mobile search panel */
    #ddgMyBookings .dx-datagrid-search-panel {
        margin-bottom: 10px !important;
    }

    #ddgMyBookings .dx-datagrid-search-panel .dx-texteditor {
        height: 35px !important;
        font-size: 12px !important;
    }

    /* Mobile pager */
    #ddgMyBookings .dx-datagrid-pager {
        padding: 8px 0 !important;
        font-size: 11px !important;
    }

    #ddgMyBookings .dx-pager .dx-pages .dx-page {
        min-width: 35px !important;
        min-height: 35px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 480px) {
    .my-bookings-container {
        padding: 5px;
    }

    .my-bookings-header {
        padding: 15px;
    }

    .my-bookings-header h3 {
        font-size: 1.3rem;
    }

    .my-bookings-grid-container {
        padding: 5px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .booking-detail-section {
        padding: 10px;
    }

    /* Extra small mobile grid - KEEP MODERN STYLING */
    #ddgMyBookings {
        font-size: 11px !important;
        min-width: 650px !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        background: white !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    #ddgMyBookings .dx-datagrid-headers {
        background: #f8f9fa !important;
        color: #2d2d2d !important;
        font-weight: 600 !important;
        border-bottom: 2px solid #e9ecef !important;
        font-size: 10px !important;
    }

    #ddgMyBookings .dx-datagrid-headers .dx-datagrid-text-content {
        color: #2d2d2d !important;
        font-weight: 600 !important;
        font-size: 10px !important;
    }

    #ddgMyBookings .dx-datagrid-rowsview .dx-datagrid-table {
        font-size: 11px !important;
    }

    #ddgMyBookings .dx-datagrid-rowsview .dx-datagrid-table .dx-row > td {
        padding: 6px 3px !important;
        color: #2d2d2d !important;
        border-color: #e9ecef !important;
        vertical-align: middle !important;
    }

    /* Extra small mobile status badges - KEEP MODERN STYLING */
    .status-badge {
        font-size: 0.6rem !important;
        padding: 2px 4px !important;
        min-width: 50px !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        text-align: center !important;
        display: inline-block !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    .status-requested,
    .status-in-process,
    .status-approved-unpaid,
    .status-approved-paid,
    .status-cancelled,
    .status-declined {
        font-size: 0.6rem !important;
        padding: 2px 4px !important;
        min-width: 50px !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        text-align: center !important;
        display: inline-block !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    /* Extra small mobile booking reference - KEEP MODERN STYLING */
    .booking-reference {
        font-size: 0.7rem !important;
        padding: 2px 4px !important;
        font-family: 'Courier New', monospace !important;
        font-weight: 700 !important;
        color: #009E46 !important;
        background: #f8f9fa !important;
        border-radius: 4px !important;
        border: 1px solid #e9ecef !important;
    }

    /* Extra small mobile search panel */
    #ddgMyBookings .dx-datagrid-search-panel {
        margin-bottom: 8px !important;
    }

    #ddgMyBookings .dx-datagrid-search-panel .dx-texteditor {
        height: 30px !important;
        font-size: 11px !important;
    }

    /* Extra small mobile pager */
    #ddgMyBookings .dx-datagrid-pager {
        padding: 6px 0 !important;
        font-size: 10px !important;
    }

    #ddgMyBookings .dx-pager .dx-pages .dx-page {
        min-width: 30px !important;
        min-height: 30px !important;
        font-size: 10px !important;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .my-bookings-datagrid .dx-datagrid-rowsview .dx-row {
        min-height: 44px;
    }

    .my-bookings-datagrid .dx-datagrid-rowsview .dx-row > td {
        min-height: 44px;
    }

    /* Better touch targets for buttons */
    .action-button {
        min-width: 44px;
        min-height: 44px;
    }

    /* Mobile-friendly pager */
    .dx-datagrid-pager {
        padding: 10px 0;
    }

    .dx-pager .dx-pages .dx-page {
        min-width: 44px;
        min-height: 44px;
    }

    /* Mobile-friendly search panel */
    .dx-datagrid-search-panel {
        margin-bottom: 10px;
    }

    .dx-datagrid-search-panel .dx-texteditor {
        height: 40px;
    }

    /* Mobile-friendly detail expansion */
    .dx-datagrid-master-detail-row .dx-datagrid-master-detail-cell {
        padding: 10px;
    }
}

/* Detail Grid Styling */
.booking-detail-section {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.booking-detail-section h5 {
    color: #2d2d2d;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.booking-detail-section h5 i {
    margin-right: 8px;
    color: #009E46;
}

/* Detail grid styling for all booking detail grids */
[id^="ddgBookingItems_"] {
    border-radius: 8px !important;
    overflow: hidden !important;
    background: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

[id^="ddgBookingItems_"] .dx-datagrid-headers {
    background: #e9ecef !important;
    font-size: 0.9rem !important;
}

[id^="ddgBookingItems_"] .dx-datagrid-rowsview {
    font-size: 0.9rem !important;
}

/* Contact Note Styling */
.contact-note {
    margin-bottom: 20px;
}

.contact-note .alert {
    border-radius: 10px;
    border: none;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.1);
    border-left: 4px solid #2196f3;
}

.contact-note .alert i {
    margin-right: 8px;
    color: #2196f3;
}

.contact-note .alert strong {
    color: #1565c0;
    font-weight: 600;
}

.contact-note .alert a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-note .alert a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* Mobile Note Styling */
.mobile-note {
    margin-bottom: 30px;
}

.mobile-note .alert {
    border-radius: 10px;
    border: none;
    padding: 20px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    box-shadow: 0 2px 8px rgba(133, 100, 4, 0.1);
    border-left: 4px solid #ffc107;
}

.mobile-note .alert i {
    margin-right: 8px;
    color: #ffc107;
}

.mobile-note .alert strong {
    color: #856404;
    font-weight: 600;
}

/* Responsive design for contact and mobile notes */
@media (max-width: 768px) {
    .contact-note .alert,
    .mobile-note .alert {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-note .alert,
    .mobile-note .alert {
        padding: 12px;
        font-size: 13px;
    }
}
