
        /* Form container */
        .booking-form {
           
            margin: 0 auto;
            color: #ffffff;
            padding: 20px;
            background-color: #111111;
        }

        /* Form row styling */
        .form-row {
            display: flex;
            flex-wrap:wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        /* Labels */
        .form-label {
            display: block;
            font-size: 14px;
            color: #cccccc;
            margin-bottom: 8px;
        }

        /* Form field styling */
        .form-field {
            flex: 1;
        }

        /* Input and select styling */
        input, select {
            width: 100%;
            padding: 8px 12px;
            background-color: #111111;
            border: 1px solid #444444;
            color: #ffffff;
            border-radius: 0;
            height: 36px;
          
        }

        /* Custom select styling */
 

        /* Charge section */
        .charge-label {
            font-size: 14px;
            color: #e9c46a; /* Gold color */
            margin-bottom: 8px;
            font-weight: bold;
        }

        /* Button styling */
        .search-button {
            background-color: #e9c46a; /* Gold color */
            color: #111111;
            border: none;
            padding: 10px 20px;
            font-weight: bold;
            cursor: pointer;
            width: 100px;
            text-align: center;
            margin-top: 10px;
        }

        /* Dropdown styling */
        .dropdown {
            padding-right: 24px;
        }

        /* Input placeholder color */
        ::placeholder {
            color: #555555;
        }

        /* Left sidebar with filters */
        .sidebar {
            background-color: #000;
            color: #fff;
           
            width: 220px;
           
            border-right: 1px solid #222;
            padding: 10px;
        }

        /* Price range filter section */
        .price-filter {
            margin-bottom: 20px;
        }

        .filter-row {
            display: flex;
            justify-content: space-between;
            padding: 5px 0;
            font-size: 14px;
        }

        /* Class filter section */
        .class-filter {
            margin-bottom: 20px;
            border-top: 1px solid #222;
            padding-top: 10px;
        }

        .class-title {
            font-size: 16px;
            margin-bottom: 10px;
        }

        /* More filters section */
        .more-filter {
            margin-bottom: 20px;
            border-top: 1px solid #222;
            padding-top: 10px;
        }

        .more-filter-title {
            font-size: 16px;
            margin-bottom: 10px;
        }

        /* Main content area with cards */
        .content {
            flex: 1;
            padding: 10px;
            background-color: #000;
        }

        /* Grid layout for cards */
        .card-grid {
            display: grid !important;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        
        /* Tablets */
        @media (max-width: 768px) {
            .card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Mobile phones */
        @media (max-width: 480px) {
            .card-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Card styling */
        .card {
            background-color: #111;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            margin-bottom: 15px;
        }

        .card-image {
            width: 100%;
            height: 150px;
            background-color: #222;
            position: relative;
        }



        .card-image  img{
            width: 100%;
            height: 100%;
        }

        .card-details {
            padding: 10px;
            font-size: 12px;
            line-height: 1.5;
        }

        .card-info {
            margin-bottom: 5px;
        }

        .name {
            font-weight: bold;
        }

        .gender, .location {
            color: #8e44ad;
        }

        .distance {
            margin-top: 5px;
            color: #999;
        }

        /* Social stats area */
        .card-stats {
            display: flex;
            border-top: 1px solid #222;
            padding: 5px 10px;
        }

        .stat {
            display: flex;
            align-items: center;
            margin-right: 10px;
            font-size: 12px;
        }

        .stat-icon {
            width: 12px;
            height: 12px;
            background-color: #555;
            border-radius: 50%;
            margin-right: 5px;
        }

        .share-button {
            margin-left: auto;
            display: flex;
            align-items: center;
        }

        /* Purple highlight for active elements */
        .purple-highlight {
            width: 3px;
            background-color: #8e44ad;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
        }

        /* Main content separator */
        .content-separator {
            background: linear-gradient(to right, #8e44ad, transparent);
            width: 1px;
            margin-right: 10px;
        }

        .active{
            color:yellow;
        }
    