        body {
            padding-top: 0 !important;
            margin-top: 0 !important;
        }
        
        .booking-section {
            padding: 100px 0;
            background: #f9f9ff;
            margin-top: 0 !important;
        }
        
        .booking-form {
            background: white;
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .booking-title {
            font-size: 36px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .booking-subtitle {
            color: #666;
            margin-bottom: 40px;
            font-size: 16px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-control, .form-select {
            height: 50px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            padding: 10px 20px;
            font-size: 14px;
            width: 100%;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: #ff4a52;
            box-shadow: none;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        
        .submit-btn {
            background: #ff4a52;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            margin-top: 20px;
        }
        
        .submit-btn:hover {
            background: #ff2e37;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 74, 82, 0.3);
        }
        
        .booking-options {
            margin-bottom: 40px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 20px;
        }
        
        .booking-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .booking-tab {
            padding: 12px 30px;
            background: #f5f5f5;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .booking-tab.active {
            background: #ff4a52;
            color: white;
        }
        
        .booking-content {
            display: none;
        }
        
        .booking-content.active {
            display: block;
        }
        
        .facility-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .facility-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 1px solid #e0e0e0;
        }
        
        .facility-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .facility-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .facility-info {
            padding: 20px;
        }
        
        .facility-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .facility-price {
            color: #ff4a52;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 15px;
        }
        
        .facility-features {
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;
        }
        
        .facility-features li {
            padding: 5px 0;
            color: #666;
            font-size: 14px;
        }
        
        .facility-features li i {
            color: #ff4a52;
            margin-right: 8px;
        }
        
        .time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 10px;
            margin-top: 10px;
        }
        
        .time-slot {
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .time-slot:hover {
            border-color: #ff4a52;
        }
        
        .time-slot.selected {
            background: #ff4a52;
            color: white;
            border-color: #ff4a52;
        }
        
        .booking-summary {
            background: #f9f9ff;
            padding: 30px;
            border-radius: 10px;
            margin-top: 30px;
        }
        
        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .summary-total {
            font-weight: 600;
            font-size: 18px;
            color: #333;
            border-bottom: none;
        }
        
        .selected-items {
            margin-top: 20px;
        }
        
        .selected-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            background: #f0f0f0;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        
        .selected-item-info {
            flex-grow: 1;
        }
        
        .selected-item-name {
            font-weight: 500;
            color: #333;
        }
        
        .selected-item-price {
            color: #ff4a52;
            font-weight: 600;
        }
        
        .selected-item-details {
            font-size: 12px;
            color: #666;
            margin-top: 2px;
        }
        
        .remove-item {
            background: #ff4a52;
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 14px;
            margin-left: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .remove-item:hover {
            background: #ff2e37;
        }
        
        .quantity-control {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }
        
        .quantity-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .quantity-btn:hover {
            background: #f0f0f0;
        }
        
        .quantity-input {
            width: 50px;
            text-align: center;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 5px;
        }
        
        .add-to-cart-btn {
            background: #ff4a52;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            width: 100%;
            margin-top: 10px;
        }
        
        .add-to-cart-btn:hover {
            background: #ff2e37;
        }
        
        .add-to-cart-btn:disabled {
            background: #cccccc;
            cursor: not-allowed;
        }
        
        .cart-section {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }
        
        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background: #f9f9ff;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        
        .cart-item-info {
            flex-grow: 1;
        }
        
        .cart-item-name {
            font-weight: 500;
            color: #333;
        }
        
        .cart-item-details {
            font-size: 13px;
            color: #666;
        }
        
        .cart-item-price {
            font-weight: 600;
            color: #ff4a52;
            margin-left: 15px;
        }
        
        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-top: 2px solid #e0e0e0;
            margin-top: 20px;
            font-size: 18px;
            font-weight: 600;
        }
        
        .empty-cart-message {
            text-align: center;
            color: #666;
            padding: 20px;
            font-style: italic;
        }
        
        .availability-badge {
            display: inline-block;
            padding: 4px 8px;
            background: #28a745;
            color: white;
            border-radius: 4px;
            font-size: 12px;
            margin-left: 10px;
        }
        
        .availability-badge.low {
            background: #ffc107;
            color: #333;
        }
        
        .availability-badge.none {
            background: #dc3545;
        }
        
        .login-alert {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            color: #856404;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .login-alert a {
            color: #ff4a52;
            font-weight: 500;
        }
        
        .error-alert {
            background: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .success-alert {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        /* Dashboard Styles */
        .dashboard-section {
            padding: 100px 0;
            background: #f9f9ff;
            margin-top: 0 !important;
        }
        
        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
            flex-wrap: wrap;
        }
        
        .welcome-message {
            font-size: 24px;
            color: #333;
            font-weight: 600;
        }
        
        .dashboard-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .dashboard-tab {
            padding: 12px 30px;
            background: #f5f5f5;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .dashboard-tab.active {
            background: #ff4a52;
            color: white;
        }
        
        .booking-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
        }
        
        .booking-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .booking-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
            flex-wrap: wrap;
        }
        
        .booking-id {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }
        
        .booking-status {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .status-pending {
            background: #fff3cd;
            color: #856404;
        }
        
        .status-confirmed {
            background: #d4edda;
            color: #155724;
        }
        
        .status-cancelled {
            background: #f8d7da;
            color: #721c24;
        }
        
        .status-completed {
            background: #d1ecf1;
            color: #0c5460;
        }
        
        .booking-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .detail-item {
            display: flex;
            flex-direction: column;
        }
        
        .detail-label {
            font-size: 12px;
            color: #666;
            margin-bottom: 5px;
        }
        
        .detail-value {
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }
        
        .booking-items {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }
        
        .items-title {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }
        
        .item-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .item-list li {
            padding: 5px 0;
            color: #666;
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        
        .item-list li span:first-child {
            color: #333;
            flex: 1;
            min-width: 200px;
        }
        
        .item-list li span:last-child {
            text-align: right;
            flex-shrink: 0;
        }
        
        .no-bookings {
            text-align: center;
            padding: 40px;
            color: #666;
        }
        
        .no-bookings i {
            font-size: 48px;
            color: #ddd;
            margin-bottom: 20px;
        }
        
        .action-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .action-btn {
            padding: 8px 16px;
            border-radius: 5px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        
        .cancel-btn {
            background: #dc3545;
            color: white;
        }
        
        .cancel-btn:hover {
            background: #c82333;
        }
        
        .view-btn {
            background: #17a2b8;
            color: white;
        }
        
        .view-btn:hover {
            background: #138496;
        }
        
        .book-now-btn {
            background: #ff4a52;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            display: inline-block;
        }
        
        .book-now-btn:hover {
            background: #ff2e37;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 74, 82, 0.3);
            color: white;
            text-decoration: none;
        }
        
        /* Payment Section Styles */
        .payment-section {
            margin: 30px 0;
            padding: 25px;
            background: #f9f9ff;
            border-radius: 10px;
        }
        
        .payment-option {
            cursor: pointer;
        }
        
        .payment-method-radio {
            display: none;
        }
        
        .payment-method-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
            height: 100%;
        }
        
        .payment-method-label:hover {
            border-color: #ff4a52;
            transform: translateY(-2px);
        }
        
        .payment-method-radio:checked + .payment-method-label {
            border-color: #ff4a52;
            background: #fff5f5;
            box-shadow: 0 5px 15px rgba(255, 74, 82, 0.1);
        }
        
        .payment-desc {
            display: block;
            font-size: 12px;
            color: #666;
            margin-top: 5px;
        }
        
        .payment-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 10px;
        }
        
        .receipt-upload-section {
            display: none;
            margin-top: 20px;
            padding: 20px;
            background: #fff;
            border-radius: 8px;
            border: 2px dashed #ddd;
        }
        
        .bank-info {
            margin-top: 20px;
            padding: 15px;
            background: #e7f3ff;
            border-radius: 8px;
            border-left: 4px solid #2196F3;
        }
        
        .payment-instruction {
            padding: 15px;
            background: #f0f8ff;
            border-radius: 8px;
            border-left: 4px solid #2196F3;
            margin-top: 15px;
        }
        
        .payment-instruction h5 {
            color: #2196F3;
            margin-bottom: 10px;
        }
        
        .payment-instruction ul {
            padding-left: 20px;
            margin: 10px 0;
        }
        
        .payment-instruction li {
            margin-bottom: 5px;
            color: #333;
        }
        
        #imagePreview img {
            max-width: 100%;
            max-height: 250px;
            border-radius: 5px;
        }
        
        .file-preview {
            display: none;
            padding: 15px;
            background: #f0f8ff;
            border-radius: 5px;
            margin-top: 10px;
        }
        
        /* Payment Status Badges */
        .payment-status-badge {
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .payment-status-paid {
            background: #d4edda;
            color: #155724;
        }
        
        .payment-status-pending {
            background: #fff3cd;
            color: #856404;
        }
        
        .payment-status-cancelled {
            background: #f8d7da;
            color: #721c24;
        }
        
        .payment-status-refunded {
            background: #d1ecf1;
            color: #0c5460;
        }
        
        /* Payment Method Display */
        .payment-method-display {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: #f0f0f0;
            border-radius: 20px;
            font-size: 14px;
        }
        
        .payment-method-display i {
            color: #ff4a52;
        }
        
        /* Modal Styles for View Details */
        .details-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            overflow-y: auto;
            padding: 20px;
        }
        
        .details-modal-content {
            background: white;
            margin: 50px auto;
            padding: 40px;
            border-radius: 10px;
            max-width: 800px;
            position: relative;
            animation: modalFadeIn 0.3s;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .modal-close:hover {
            background: #f0f0f0;
            color: #333;
        }
        
        .modal-title {
            font-size: 28px;
            margin-bottom: 20px;
            color: #333;
            padding-right: 30px;
        }
        
        .modal-section {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .modal-section-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        
        .detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .modal-item {
            background: #f9f9ff;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        
        .modal-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .modal-item-name {
            font-weight: 600;
            color: #333;
            font-size: 16px;
        }
        
        .modal-item-price {
            color: #ff4a52;
            font-weight: 600;
        }
        
        .modal-item-details {
            font-size: 13px;
            color: #666;
            margin-bottom: 5px;
        }
        
        .modal-payment-info {
            background: #f0f8ff;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .modal-payment-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .modal-payment-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
        }
        
        .cancellation-policy {
            background: #fff8f8;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            font-size: 13px;
            color: #666;
        }
        
        .policy-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }
        
        /* Rating Styles */
        .rating-display {
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }
        
        .rating-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .rating-stars {
            font-size: 24px;
            color: #ddd;
        }
        
        .star-hover {
            color: #ffcc00 !important;
        }
        
        .star-selected {
            color: #ffcc00 !important;
        }
        
        .rate-btn {
            background: #ffcc00 !important;
            color: #333 !important;
        }
        
        .rate-btn:hover {
            background: #e6b800 !important;
        }
        
        .rate-btn.disabled {
            opacity: 0.6;
            cursor: not-allowed !important;
        }
        
        .view-rating-btn {
            background: #28a745 !important;
            color: white !important;
        }
        
        .view-rating-btn:hover {
            background: #218838 !important;
        }
        
        .rating-prompt {
            background: #fff8e1;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #ffcc00;
            margin-bottom: 20px;
        }
        
        /* Combined Rating Modal Styles */
        .combined-rating-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            overflow-y: auto;
            padding: 20px;
        }
        
        .combined-rating-modal-content {
            background: white;
            margin: 30px auto;
            padding: 40px;
            border-radius: 10px;
            max-width: 800px;
            position: relative;
            animation: modalFadeIn 0.3s;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .rating-section {
            margin-bottom: 40px;
            padding: 25px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            background: #f9f9ff;
        }
        
        .rating-section-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .rating-section-title i {
            color: #ffcc00;
        }
        
        .rating-stars-large {
            font-size: 40px;
            color: #ddd;
            cursor: pointer;
            margin: 20px 0;
        }
        
        .rating-text {
            margin-top: 10px;
            color: #666;
            font-size: 14px;
            min-height: 20px;
        }
        
        .rating-feedback {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-top: 20px;
            font-size: 14px;
            resize: vertical;
        }
        
        .rating-feedback:focus {
            outline: none;
            border-color: #ff4a52;
        }
        
        /* Item Rating Section */
        .item-rating-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .item-rating-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s;
        }
        
        .item-rating-card:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .item-rating-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .item-rating-name {
            font-weight: 600;
            color: #333;
            font-size: 16px;
        }
        
        .item-rating-category {
            font-size: 12px;
            color: #666;
            background: #f0f0f0;
            padding: 2px 8px;
            border-radius: 10px;
        }
        
        .item-rating-stars {
            font-size: 24px;
            color: #ddd;
            cursor: pointer;
            margin: 10px 0;
        }
        
        .item-rated-badge {
            background: #28a745;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            display: inline-block;
            margin-top: 10px;
        }
        
        /* New Styles for Enhanced Rating */
        .rating-message {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            border-left: 4px solid #ffcc00;
        }
        
        /* Fix for star styling and prevent flickering */
        .rating-stars-large i,
        .item-rating-stars i {
            transition: color 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .rating-stars-large i::before,
        .item-rating-stars i::before {
            display: block;
        }
        
        .rating-stars-large i.star-hover,
        .rating-stars-large i.star-selected,
        .item-rating-stars i.star-hover,
        .item-rating-stars i.star-selected {
            color: #ffcc00 !important;
            transform: scale(1.1);
        }
        
        /* Prevent hover on already selected */
        .rating-stars-large i.star-selected:hover,
        .item-rating-stars i.star-selected:hover {
            color: #ffcc00 !important;
        }
        
        /* Remove any conflicting transitions */
        .fa-star {
            will-change: transform, color;
        }
        
        /* Logout button styles - FIXED */
        .logout-btn {
            background: #6c757d;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            display: inline-block;
        }
        
        .logout-btn:hover {
            background: #5a6268;
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }
        
        .header-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        /* FIXED LOGOUT LINK STYLES */
        .logout-link {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 8px 15px;
            border-radius: 5px;
            display: inline-block;
        }
        
        .logout-link:hover {
            color: #ff4a52;
            background: rgba(255, 74, 82, 0.1);
            transform: translateY(-2px);
            text-decoration: none;
        }
        
        /* Desktop navigation logout link fix */
        .main-menu nav ul#navigation li a.logout-link {
            color: #333;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .main-menu nav ul#navigation li a.logout-link:hover {
            color: #ff4a52;
            background: rgba(255, 74, 82, 0.1);
            transform: translateY(-2px);
        }
        
        .logout-btn-small {
            background: #6c757d;
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            display: inline-block;
            font-size: 14px;
        }
        
        .logout-btn-small:hover {
            background: #5a6268;
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }
        
        /* Item Rating Stars in Booking Card */
        .item-rating-stars-small {
            display: flex;
            align-items: center;
            gap: 2px;
            margin-bottom: 5px;
        }
        
        .item-rating-stars-small .fa-star {
            font-size: 12px;
        }
        
        .item-rating-stars-small .rating-text {
            font-size: 11px;
            color: #666;
            margin-left: 5px;
        }
        
        .no-rating-text {
            font-size: 11px;
            color: #999;
            margin-bottom: 5px;
        }
        
        /* Item Rating Button in Booking Card */
        .item-rate-btn {
            background: #ffcc00 !important;
            color: #333 !important;
            padding: 2px 6px !important;
            font-size: 11px !important;
            border-radius: 3px !important;
            margin-left: 5px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .item-rate-btn:hover {
            background: #e6b800 !important;
            transform: translateY(-1px);
        }
        
        .item-rate-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .item-rated-text {
            font-size: 11px;
            color: #28a745;
            margin-left: 5px;
            font-weight: 500;
        }
        
        /* Search Bar Styles */
        .tab-search-bars {
            margin-bottom: 20px;
        }
        
        .search-bar-container {
            display: none;
        }
        
        .search-bar-container.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .input-group {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .input-group .form-control {
            border: 1px solid #e0e0e0;
            border-right: none;
            padding: 12px 15px;
            font-size: 14px;
        }
        
        .input-group .form-control:focus {
            box-shadow: none;
            border-color: #ff4a52;
        }
        
        .input-group-text {
            padding: 12px 15px;
            cursor: pointer;
        }
        
        .no-results-message {
            text-align: center;
            padding: 40px 20px;
            color: #666;
            background: #f9f9f9;
            border-radius: 10px;
            margin: 20px 0;
        }
        
        .no-results-message i {
            font-size: 48px;
            color: #ddd;
            margin-bottom: 15px;
        }
        
        .search-highlight {
            background-color: #fff3cd;
            color: #856404;
            padding: 2px 4px;
            border-radius: 3px;
            font-weight: bold;
        }
        
        /* Responsive Header Styles */
        @media (max-width: 1199px) {
            .main-menu {
                padding-left: 15px;
            }
            
            .main-menu nav ul#navigation {
                gap: 20px;
            }
        }
        
        @media (max-width: 991px) {
            .header-area {
                padding: 10px 0;
            }
            
            .logo-img img {
                max-height: 45px;
            }
            
            .book_room {
                padding-right: 15px;
            }
            
            .combined-rating-modal-content {
                padding: 20px;
                margin: 10px auto;
            }
        }
        
        @media (max-width: 767px) {
            .header-area {
                padding: 8px 0;
            }
            
            .logo-img img {
                max-height: 40px;
            }
            
            .book_btn .btn {
                padding: 6px 12px;
                font-size: 14px;
            }
            
            .cart-icon-container a {
                font-size: 14px;
            }
            
            .mobile-menu-container {
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                z-index: 1000;
                position: absolute;
                width: 100%;
                left: 0;
                top: 100%;
            }
            
            .item-rating-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 575px) {
            .logo-img img {
                max-height: 35px;
            }
            
            .book_btn .btn {
                padding: 5px 10px;
                font-size: 13px;
            }
            
            .cart-icon-container a {
                font-size: 13px;
            }
            
            .cart-icon-container a span {
                display: none;
            }
            
            .combined-rating-modal-content {
                padding: 15px;
                margin: 5px auto;
            }
            
            .rating-section {
                padding: 15px;
            }
        }
        
        /* Mobile Menu Styles */
        .mobile-menu-container {
            background: white;
            border-top: 1px solid #eee;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .mobile-menu-container a {
            transition: all 0.3s;
            border-radius: 5px;
        }
        
        .mobile-menu-container a:hover {
            background: #f8f9fa;
            padding-left: 25px;
            text-decoration: none;
        }
        
        .mobile-menu-container .badge {
            margin-top: 2px;
        }
        
        /* Fix for Bootstrap collapse */
        .collapse:not(.show) {
            display: none;
        }
        
        .collapsing {
            position: relative;
            height: 0;
            overflow: hidden;
            transition: height 0.35s ease;
        }
        
        /* Book Now Button Styles */
        .book_btn a {
            background: #ff4a52;
            color: white;
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-block;
            white-space: nowrap;
        }
        
        .book_btn a:hover {
            background: #ff2e37;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 74, 82, 0.3);
        }
        
        /* Social Links */
        .socail_links ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 15px;
        }
        
        .socail_links ul li a {
            color: #333;
            font-size: 18px;
            transition: all 0.3s;
        }
        
        .socail_links ul li a:hover {
            color: #ff4a52;
        }
        
        /* Desktop Navigation */
        .main-menu nav ul#navigation {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 30px;
        }
        
        .main-menu nav ul#navigation li a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            text-transform: capitalize;
            transition: all 0.3s;
            padding: 5px 0;
            position: relative;
        }
        
        .main-menu nav ul#navigation li a:hover {
            color: #ff4a52;
        }
        
        .main-menu nav ul#navigation li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #ff4a52;
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        
        .main-menu nav ul#navigation li a:hover:after {
            width: 100%;
        }
        
        /* Header Buttons */
        .header-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
            
        }
        
        .header-buttons a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 8px 15px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            white-space: nowrap;
        }
        
        .header-buttons a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        /* Sticky Header - FIXED VERSION */
        #sticky-header {
            position: sticky !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            z-index: 9999 !important;
            background: white !important;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
            animation: slideDown 0.3s !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }
        
        /* Header area adjustments */
        .header-area {
            height: auto !important;
            padding-top: 0 !important;
            padding-bottom: 0 !important;
        }
        
        .main-header-area {
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
        }
        
        /* Ensure content starts below fixed header */
        .content-wrapper {
            padding-top: 0;
        }
        
        /* Adjust header height for mobile */
        @media (max-width: 991px) {
            .content-wrapper {
                padding-top: 0;
            }
        }

        @media (max-width: 767px) {
            .content-wrapper {
                padding-top: 0;
            }
            
            .header-area {
                padding: 8px 0;
            }
        }
        
        /* Responsive adjustments for other sections */
        @media (max-width: 768px) {
            .booking-section {
                padding: 50px 0;
            }
            
            .booking-form {
                padding: 25px;
            }
            
            .booking-title {
                font-size: 28px;
            }
            
            .dashboard-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .payment-options {
                grid-template-columns: 1fr;
            }
            
            .facility-grid {
                grid-template-columns: 1fr;
            }
            
            .booking-tabs, .dashboard-tabs {
                justify-content: center;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 5px;
            }
            
            .booking-tab, .dashboard-tab {
                padding: 10px 15px;
                font-size: 13px;
                white-space: nowrap;
            }
        }
        
        @media (max-width: 576px) {
            .booking-section {
                padding: 30px 0;
            }
            
            .booking-form {
                padding: 15px;
            }
            
            .booking-title {
                font-size: 24px;
            }
            
            .submit-btn {
                padding: 12px 20px;
                font-size: 14px;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .action-btn {
                width: 100%;
                text-align: center;
            }
        }
        
        /* Service Request Button Styles */
        .service-request-btn {
            background: #28a745 !important;
            color: white !important;
        }
        
        .service-request-btn:hover {
            background: #218838 !important;
        }

        /* ==================== CART MODAL STYLES ==================== */
        
        /* Cart Icon Styles */
        .cart-icon-container {
            margin-left: 15px;
        }
        
        .cart-icon-container a {
            color: #fff;
            position: relative;
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .cart-icon-container a i {
            font-size: 20px;
        }
        
        #cartItemCount, #mobileCartCount {
            background: #ff4a52;
            color: white;
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 11px;
            position: absolute;
            top: -8px;
            right: -8px;
            min-width: 18px;
            height: 18px;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .mobile-menu-item .mobile-badge {
            background: #ff4a52;
            color: white;
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 11px;
            position: absolute;
            right: 20px;
            min-width: 18px;
            height: 18px;
            display: none;
            align-items: center;
            justify-content: center;
        }
        
        /* Cart Modal Styles */
        .cart-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10001;
            overflow-y: auto;
            padding: 20px;
        }
        
        .cart-modal-content {
            background: white;
            margin: 50px auto;
            padding: 30px;
            border-radius: 15px;
            max-width: 800px;
            position: relative;
            animation: modalFadeIn 0.3s;
            max-height: 80vh;
            display: flex;
            flex-direction: column;
        }
        
        .cart-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
            margin-bottom: 20px;
        }
        
        .cart-modal-header h3 {
            margin: 0;
            color: #333;
            font-size: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .cart-modal-body {
            flex: 1;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .cart-modal-footer {
            display: flex;
            gap: 15px;
            padding-top: 20px;
            border-top: 2px solid #f0f0f0;
            margin-top: 20px;
        }
        
        .modal-cart-items {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .modal-cart-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 15px;
            background: #f9f9ff;
            border-radius: 10px;
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
        }
        
        .modal-cart-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .modal-cart-item-info {
            flex: 1;
        }
        
        .modal-cart-item-name {
            font-weight: 600;
            color: #333;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .modal-cart-item-details {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
        }
        
        .modal-cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }
        
        .modal-cart-item-quantity .quantity-btn {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        .modal-cart-item-quantity .quantity-input {
            width: 45px;
            text-align: center;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 5px;
            font-size: 13px;
        }
        
        .modal-cart-item-price {
            font-weight: 600;
            color: #ff4a52;
            font-size: 16px;
            margin-left: 15px;
            text-align: right;
            min-width: 100px;
        }
        
        .modal-cart-item-remove {
            background: #dc3545;
            color: white;
            border: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 12px;
            margin-left: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .modal-cart-item-remove:hover {
            background: #c82333;
            transform: scale(1.1);
        }
        
        .modal-cart-total {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            border: 1px solid #e0e0e0;
        }
        
        /* Scrollbar styling */
        .modal-cart-items::-webkit-scrollbar {
            width: 8px;
        }
        
        .modal-cart-items::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .modal-cart-items::-webkit-scrollbar-thumb {
            background: #ff4a52;
            border-radius: 10px;
        }
        
        .modal-cart-items::-webkit-scrollbar-thumb:hover {
            background: #ff2e37;
        }
        
        /* Animation for cart icon */
        @keyframes cartBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        .cart-bounce {
            animation: cartBounce 0.5s ease;
        }
        
        /* Combined Rating Modal Scrollbar */
        .combined-rating-modal-content::-webkit-scrollbar {
            width: 8px;
        }
        
        .combined-rating-modal-content::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .combined-rating-modal-content::-webkit-scrollbar-thumb {
            background: #ff4a52;
            border-radius: 10px;
        }
        
        .combined-rating-modal-content::-webkit-scrollbar-thumb:hover {
            background: #ff2e37;
        }
    </style>
</head>

<!-- Scroll Up Button -->
<div id="scrollUp" class="scroll-up-btn">
    <i class="fa fa-chevron-up"></i>
</div>

<style>
    /* ==================== SCROLL UP BUTTON ==================== */
    .scroll-up-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: #ff4a52;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(255, 74, 82, 0.3);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
    }

    .scroll-up-btn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-up-btn:hover {
        background: #ff2e37;
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(255, 74, 82, 0.4);
    }

    .scroll-up-btn i {
        font-size: 24px;
        font-weight: bold;
    }

    /* Animation for scroll up button */
    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .scroll-up-btn.bounce {
        animation: bounce 1s ease infinite;
    }

    /* Responsive styles for scroll up button */
    @media (max-width: 768px) {
        .scroll-up-btn {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
        }
        
        .scroll-up-btn i {
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .scroll-up-btn {
            bottom: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
        }
        
        .scroll-up-btn i {
            font-size: 18px;
        }
    }