    /* Training Page Styles */
    :root {
        --primary-color: #3EBFAF;
        --secondary-color: #006E90;
        --accent-color: #048AAF;
        --text-color: #333;
        --light-gray: #f5f5f5;
        --border-color: #ddd;
        --star-color: #FFC107;
    }

    body {
        margin: 0;
        padding: 0;
        background-color: #f9f9f9;
    }

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

      .training-count {
            padding: 12px 15px;
            background-color: #f8f9fa;
            border-radius: 5px;
            border: 1px solid #e9ecef;
            align-self: center;
        }

        .training-count h4 {
            margin: 0;
            color: #333;
            font-size: 1.1rem;
        }

        .training-count span {
            color: #2196F3;
            font-weight: 600;
        }


    .training-header {
        background-color: var(--primary-color);
        color: white;
        text-align: center;
        padding: 15px 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .training-header h1 {
        margin: 0;
        font-size: 2rem;
        font-weight: 500;
    }

    .search-container {
        margin: 20px 0;
    }

    .search-input {
        width: 100%;
        padding: 12px 20px;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        font-size: 16px;
        outline: none;
        background-position: 12px center;
        background-repeat: no-repeat;
        padding-left: 40px;
    }

    .training-cards {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .training-card {
        border: 1px solid var(--border-color);
        border-radius: 10px;
        overflow: hidden;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        cursor: pointer;
    }

    .training-card:hover {
        border: 2px solid #048AAE;
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    }

    .card-image {
        height: 250px;
        overflow: hidden;
        position: relative;
        background-color: var(--light-gray);
    }

    .card-image img {
        width: 100%;
        object-fit: cover;
    }

    .card-content {
        padding: 15px;
    }

    .card-content h3 {
        margin: 0 0 5px 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-color);
    }

    .instructor {
        margin: 5px 0;
        color: var(--text-color);
        font-size: 0.9rem;
    }

    .details {
        margin: 8px 0;
        color: #666;
        font-size: 0.85rem;
    }

    .rating {
        display: flex;
        align-items: center;
        margin: 10px 0;
    }

    .rating-score {
        margin-right: 5px;
        font-weight: bold;
        color: var(--text-color);
    }

    .star {
        color: #ccc;
        margin-right: 2px;
    }

    .star.filled {
        color: var(--star-color);
    }

    .star.half-filled {
        position: relative;
        color: #ccc;
    }

    .star.half-filled:before {
        content: "★";
        position: absolute;
        color: var(--star-color);
        width: 50%;
        overflow: hidden;
    }

    .price {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--text-color);
        margin-top: 10px;
    }

    .view-details {
        position: absolute;
        bottom: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        background-color: var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

    .view-details:hover {
        transform: scale(1.1);
    }

    .arrow-icon {
        font-size: 16px;
    }

    .not-available {
        position: absolute;
        bottom: 15px;
        right: 15px;
        padding: 5px 10px;
        background-color: #f44336;
        color: white;
        border-radius: 4px;
        font-size: 0.8rem;
    }

    /* Category Filter */
    .category-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 20px 0;
    }

    .category-filter {
        padding: 6px 12px;
        background-color: #f1f1f1;
        border-radius: 20px;
        border: 1px solid var(--border-color);
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.2s ease;
    }

    .category-filter:hover, .category-filter.active {
        background-color: var(--primary-color);
        color: white;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .training-cards {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
    }

    @media (max-width: 480px) {
        .training-cards {
            grid-template-columns: 1fr;
        }

        .card-image {
            height: 180px;
        }
    }

    .custom-select-container {
        position: relative;
        width: 100%;
    }

    .singlecustom-select-container {
    z-index: 1;
     position: relative;
    width: 100%;
    display: inline-block;
    }

    .custom-select-trigger {
        width: 100%;
        padding: 5px;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        background: white;
        cursor: pointer;
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        align-items: center;
    }




    .selected-item {
        background: #CBFFF6;
        border-radius: 3px;
        padding: 2px 8px;
        margin: 2px;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .single-selected-item {
        background: transparent;
        border-radius: 3px;
        padding: 2px 8px;
        margin: 2px;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .custom-select-trigger:after {
        content: '';
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #333;
        margin-left: auto;
    }

    .singlecustom-select-trigger:after {
        content: '';
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #333;
        margin-left: auto;
    }

    .custom-select-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        margin-top: 2px;
        max-height: 150px;
        overflow-y: auto;
        z-index: 1000;
        display: none;
    }

    .singlecustom-select-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        margin-top: 2px;
        max-height: 150px;
    }
