.providers-page-wrapper-0001 {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.providers-header-0001 {
    margin-bottom: 30px;
}

.providers-header-0001 h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.providers-header-0001 p {
    font-size: 16px;
    color: #4a5568;
    max-width: 800px;
}

.providers-meta-bar-0001 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #718096;
    font-size: 14px;
}

.sort-select-0001 {
    padding: 6px 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    outline: none;
}

/* Provider Card */
.provider-card-0001 {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    position: relative;
    border: 1px solid #edf2f7;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.provider-card-0001:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.provider-logo-col-0001 {
    flex: 0 0 120px;
    margin-right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.provider-logo-0001 {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border: 1px solid #edf2f7;
    border-radius: 4px;
    padding: 10px;
    background: #fff;
}

.provider-content-col-0001 {
    flex: 1;
}

.provider-title-0001 {
    font-size: 20px;
    font-weight: 700;
    color: #2b6cb0;
    margin-top: 0;
    margin-bottom: 5px;
    text-decoration: none;
    display: inline-block;
}

.provider-title-0001:hover {
    color: #2c5282;
    text-decoration: underline;
}

.provider-subtitle-0001 {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 10px;
}

.provider-rating-0001 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars-0001 {
    color: #ecc94b;
    font-size: 14px;
    margin-right: 8px;
}

.review-count-0001 {
    font-size: 13px;
    color: #718096;
}

.provider-desc-0001 {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
}

.provider-meta-info-0001 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #718096;
}

.meta-item-0001 {
    display: flex;
    align-items: center;
}

.meta-item-0001 i {
    margin-right: 6px;
    color: #a0aec0;
}

/* Score Bubble */
.provider-score-col-0001 {
    flex: 0 0 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.score-bubble-0001 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #805ad5;
    /* Purple border matching image */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
}

.bookmark-icon-0001 {
    color: #cbd5e0;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.bookmark-icon-0001:hover,
.bookmark-icon-0001.active {
    color: #2b6cb0;
}

/* Filter Sidebar */
.filter-sidebar-0001 {
    background: #f8f9fa;
    padding: 0 0 0 20px;
    position: sticky;
    top: 20px;
}

.filter-group-0001 {
    margin-bottom: 20px;
}

.filter-group-0001 label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.filter-group-0001 select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    background-color: #fff;
    color: #4a5568;
    font-size: 14px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0aec0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
}

.filter-group-0001 select:focus {
    border-color: #3182ce;
    box-shadow: 0 0 0 1px #3182ce;
}

.filter-actions-0001 {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.btn-find-0001 {
    background-color: #ed8936;
    /* Orange color matching image */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    flex: 1;
}

.btn-find-0001:hover {
    background-color: #dd6b20;
}

.btn-clear-0001 {
    background-color: #edf2f7;
    color: #4a5568;
    border: 1px solid #cbd5e0;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear-0001:hover {
    background-color: #e2e8f0;
}

/* Mobile Filter Toggle Button */
.filter-toggle-btn-0001 {
    width: 100%;
    background-color: #ed8936;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: background-color 0.2s;
}

.filter-toggle-btn-0001:hover {
    background-color: #dd6b20;
}

/* Responsive */
@media (max-width: 991px) {
    .provider-card-0001 {
        flex-direction: column;
    }

    .provider-logo-col-0001 {
        margin-right: 0;
        margin-bottom: 20px;
        align-items: flex-start;
    }

    .provider-score-col-0001 {
        position: absolute;
        top: 24px;
        right: 24px;
        height: auto;
    }

    .bookmark-icon-0001 {
        position: absolute;
        bottom: 24px;
        right: 24px;
    }

    .filter-sidebar-0001 {
        padding: 0;
        margin-bottom: 30px;
        border-top: none;
        position: static;
    }

    .filter-content-wrapper-0001 {
        display: none;
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #edf2f7;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .filter-content-wrapper-0001.show-0001 {
        display: block;
    }
}

@media (min-width: 992px) {
    .filter-content-wrapper-0001 {
        display: block !important;
    }
}

/* Featured Card & Badge styling */
.featured-card-0001 {
    border-left: 3px solid #2b6cb0;
}

.featured-badge-0001 {
    background-color: #2b6cb0;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Card View Details Button */
.view-details-btn-0001 {
    background-color: #ed8936;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s, transform 0.2s;
    white-space: nowrap;
}

.view-details-btn-0001:hover {
    background-color: #dd6b20;
    color: #ffffff;
    transform: translateY(-1px);
    text-decoration: none;
}