        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Search Bar Section */
        .search-bar-section {
            padding: 80px 0 0;
            margin-bottom: 10px;
        }

        .search-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .search-bar-content {
            background: white;
            border-radius: 50px;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            flex-wrap: wrap;
        }

        .search-item {
            flex: 1;
            min-width: 180px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .search-label {
            font-size: 12px;
            font-weight: 600;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .search-value {
            font-size: 16px;
            font-weight: 500;
            color: #333;
        }

        .search-divider {
            width: 1px;
            height: 40px;
            background: #e0e0e0;
        }

        .edit-search-btn {
            background: #c83518;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }


        /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            padding: 15px;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 9999;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .modal-content {
            background: white;
            border-radius: 25px;
            width: 100%;
            top: 50%;          /* Move to vertical center */
            left: 50%;         /* Move to horizontal center */
            transform: translate(-50%, -50%);
            max-width: 850px;
            height: max-content;
            animation: slideUp 0.3s ease;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            padding: 10px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            color: #000;
            font-size: 20px;
            font-weight: 500;
        }

        .modal-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #000;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 35px 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-size: 14px;
            font-weight: 600;
            color: #555;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-label i {
            color: #c83518;
        }

      
        @media screen and (max-width: 768px) {
            .header-as{
                padding: 0px !important;
            }
            .search-bar-section{
                padding: 15px 0px 0px 0px !important;
            }
            .card-content{
                padding: 0px;
            }
            .ufparkingss {
                width: 100%;
                display: flex;
                justify-content: space-between;
                margin-top: 10px;
            }
          
        }

        .date-input-wrapper {
            position: relative;
        }

        .date-input-wrapper i {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            pointer-events: none;
        }

        .modal-footer {
            padding: 20px;
            display: flex;
            gap: 15px;
            justify-content: flex-end;
        }

        .btn {
            padding: 10px 25px;
            border: none;
            border-radius: 0px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-cancel {
            background: #f1f1f1;
            color: #666;
            padding: 7px 10px;
            border: none;
            border-radius: 5px;
            align-items: center;
        }

        .btn-cancel:hover {
            background: #e0e0e0;
        }

        .btn-search {
            background: #c83518;
            color: white; 
            border: none;
            border-radius: 5px;
            display: flex;
            padding: 7px 10px;
            align-items: center;
            gap: 10px;
        }

        .btn-search:hover {
            background: #e55a00;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
        }

        /* Existing Parking Cards Styles */
        .header-as {
            background: white;
            padding: 20px;
            border: none;
            border-radius: 5px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .filter-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        select {
            padding: 12px 40px 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            background: white;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
        }

        select:hover {
            border-color: #c83518;
        }
           input:focus-visible {
             border: 0px;
             outline: none;
        }

        select:focus {
            outline: none;
            border-color: #c83518;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        .ufparkmain{
            background: white;
            margin-bottom: 5px;
            border-radius: 10px;
            border: 1px solid #EBEBEB;
        }

        .parking-card {
            
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            gap: 10px;
            align-items: center;
        }

      .card-logo {
    width: 150px;
    height: 150px;
    padding: 15px 0px 15px 15px;
}


        .card-logo img {
            width: 100%;
            height: 100%;
            border-radius: 10px 10px 0px 0px ;
            object-fit: cover;
        }

        .card-content {
            flex: 1;
            min-width: 0;
        }

        .card-header {
            margin-bottom: 12px;
            background: transparent;
            padding: 0;
        }

        .card-title {
            font-size: 24px;
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 0px;
        }

        .stars {
            color: #c83518;
            font-size: 18px;
        }

        .rating-text {
            font-weight: 600;
            color: #333;
            font-size: 15px;
        }

        .rating-count {
            color: #333;
            font-size: 15px;
        }
        .card-detailss {
        transform: translate(0px) !important;
        }

        .card-details {
            display: flex;
           gap: 20px;
            width: fit-content;
            text-align: center;
            justify-content: center;
            margin: 0 auto;
            transform: translate(-165px, -25px);
        } 

        .detail-item {
            display: flex;
            color: #555;
            font-size: 12px;
            width: 100%;
            gap: 10px;
            justify-content: center;
            align-items: center;
        }

        .icon {
            width: 20px;
            height: 20px;
            color: #c83518;
        }

        .card-pricing {
            text-align: right;
            flex-shrink: 0;
                padding-right: 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
        }

        .original-price {
            color: #000; 
            font-weight: 500;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .current-price {
            font-size: 28px;
            font-weight: 500;
            color: #e53e3e;
        }

        .total-price {
            font-size: 28px;
            font-weight: 500;
            color: #333;
            margin-bottom: 15px;
        }
        .book-button {
            background: #c83518;
            color: white;
            border: none;
            padding: 10px 32px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .book-button:hover {
            background: #c83518;
            color: #fff;
            transform: scale(1.05);
        }
        .ufparkingss{
            width: 100%;
        }
        .includes-text {
            color: #c83518;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .date-field {
            padding: 6px 12px;
            border: 1px solid #d1d5db;
            border-radius: 5px;
            font-size: 14px;
            width: 100%;
            cursor: pointer;
            background: white;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .checkmark {
            color: #c83518;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .search-bar-content {
                border-radius: 25px;
                padding: 20px;
            }

            .search-divider {
                display: none;
            }

           

            .parking-card {
                flex-direction: column;
            }


            .detail-item img{
                width: 100%;
                margin-bottom: 5px;
            }
            .detail-item{
                display: grid;
                color: #555;
                font-size: 12px;
                width: 100%;
                gap: 0px;
                justify-content: center;
                align-items: center;
                line-height: 16px;
            }

            .card-pricing {
                width: 100%;
                text-align: left;
                align-items: flex-start;
            }

         .original-price{
            
            margin: 0 !important;
         }
         .book-button{
                padding: 8px 22px !important;
                font-size: 14px !important;
         }
         .card-pricing{
                padding: 0px !important;
         }

            .modal-body {
                padding: 25px 20px;
            }

            .modal-footer {
                padding: 0 20px 25px;
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        .mobilebtufedi{
                display: none ;
            }
        @media (max-width: 640px) {
            .search-bar-content {
                padding: 15px;
                display: flex;
                flex-wrap: nowrap;
                border-radius: 0px !important;
                padding: 0px !important;
            

            } 
                        .search-bar-content{
    box-shadow: none !important;
}
            .search-bar-container{
                padding: 15px  !important;
            }
            .stars{
                margin-bottom: 0px !important;
                font-size: 14px !important;
            }
            .rating-text{
                font-size: 10px !important;

            }
            .rating-count{
                font-size: 10px !important;
            }
            .search-item{
                    min-width: 85px !important;
            }
            .desktopbtufedi{
                display: none ;
            }
            .mobilebtufedi{
                display: block !important;
                border: none;
                background: transparent;
            }
            .card-logo{
                width: 100px !important;
                height: 100px !important;
                padding: 0px 10px 10px 0px !important;
            }

           .search-label{
                display: none !important;
            }

            .edit-search-btn {
                width: 100%;
                justify-content: center;
            }

            .filter-group {
                width: 100%;
            }

            select {
                flex: 1;
                min-width: 140px;
            }

            .card-title {
                font-size: 16px;
            }

            .parking-card {
                padding: 15px;
                margin-bottom: 0px !important;
            }

            .total-price {
                font-size: 18px !important; 
            }

            .modal-title {
                font-size: 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .book_tabel_item .form-group .input-group .form-control{
            border: solid 1px #e8e8e8;
            border-radius: 5px;
        }
