    .tsp-parent-category {
        margin-bottom: 10px;
    }
/*     .tsp-parent-check {
        font-weight: bold;
    } */
    .tsp-child-check {
        font-weight: normal;
    }
    .tsp-child-categories {
        margin-left: 20px;
        border-left: 2px solid #ddd;
        padding-left: 10px;
    }
.tsp-no-results {
    padding: 40px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.tsp-no-results h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.tsp-no-results p {
    color: #666;
}


/* Main Container */
.tsp-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Sidebar Filters */
.tsp-sidebar {
    width: 280px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    flex-shrink: 0;
}

.tsp-main {
    flex: 1;
}

.tsp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}

.tsp-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.tsp-clear-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.tsp-clear-link:hover {
    color: #333;
}

.tsp-widget {
    margin-bottom: 25px;
}

.tsp-widget-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.tsp-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.tsp-check, .tsp-radio {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.tsp-check input, .tsp-radio input {
    margin-right: 10px;
    transform: scale(1.1);
}

/* Tutor Cards Grid */
.tsp-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.tsp-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tsp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.tsp-img-wrap {
    height: 350px;
    overflow: hidden;
}

.tsp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tsp-card:hover .tsp-img-wrap img {
    transform: scale(1.05);
}

.tsp-no-img {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.tsp-info {
	display: grid;
    padding: 25px;
}

/* Name - H1 Style */
.tsp-name {
    margin: 0 0 4px 0;
    font-size: 30px !important;
    font-weight: 600;
    color: #000;
    line-height: 0.6 !important;
}

/* Category - H2 Style */
.tsp-cat {
    margin: 0 0 10px 0;
    font-size: 14px !important;
    font-weight: 600;
    color: #0170b9 !important;
    line-height: 1.4;
}

/* Description */
.tsp-desc {
    text-align: justify;
    font-size: 16px;
/*     line-height: 1.6; */
    color: #333;
    margin-bottom: 20px;
}

/* Read More - Bold */
.tsp-read-more {
    color: #000;
    font-weight: 700;
    cursor: pointer;
}

.tsp-read-more:hover {
    text-decoration: underline;
}

/* Schedule Button */
.tsp-schedule-btn {
     background-color: var(--e-global-color-astglobalcolor0);
    font-weight: 500;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-radius: 7px 7px 7px 7px;
    padding: 16px 25px 16px 25px;
    border: none;
    width: -webkit-fill-available;
	text-align:center;

}

.tsp-schedule-btn:hover {
    color: white;
    text-decoration: none;
}

/* Loading States */
.tsp-loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

.tsp-error {
    text-align: center;
    padding: 40px;
    color: #d9534f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tsp-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .tsp-sidebar {
        width: 100%;
    }
    
    .tsp-card-grid {
        grid-template-columns: 1fr;
    }
    
    .tsp-name {
        font-size: 20px;
    }
    
    .tsp-cat {
        font-size: 14px;
    }
    
    .tsp-info {
        padding: 20px;
    }
}



/* Description Container */
.tsp-desc-container {
    margin-bottom: 15px;
    position: relative;
}

/* .tsp-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 8px;
} */

/* Read More/Less Links */
.tsp-read-more, .tsp-read-less {
    color: #000;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
}

.tsp-read-more:hover, .tsp-read-less:hover {
    text-decoration: underline;
}

.readmore-toggle {
    color: #0073aa;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s 
ease-in-out;
    transition: 0.5s 
ease-in-out !important;
}



#tsp-video-popup {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.7);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}
.tsp-popup-box {
    background:#fff;
    max-width:700px;
    width:90%;
    padding:20px;
    border-radius:10px;
    position:relative;
}
.tsp-popup-close{
    position:absolute;
    top:10px; right:15px;
    cursor:pointer;
    font-size:20px;
}
.tsp-video-btn{
    background-color: var(--e-global-color-astglobalcolor0);
    font-weight: 500;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-radius: 7px 7px 7px 7px;
    padding: 16px 25px 16px 25px;
    border: none;
    width: -webkit-fill-available;
	text-align:center;
	margin-bottom:10px;
}


.tsp-pagination {
    text-align: center;
    margin-top: 25px;
}

.tsp-pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 6px 12px;
    background: #eee;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.tsp-pagination a.active {
    background: #3b82f6;
    color: #fff;
}

.tsp-pagination a:hover {
    background: #d1d5db;
}
