.csc-layout.csc-no-filter {
    display: block !important;
}

.csc-layout.csc-no-filter #csc-providers-list {
    width: 100%;
    max-width: 100%;
}

.csc-container {
    width: 100%;
}

.csc-layout {
    display: grid;
    grid-template-columns: 25% auto;
    gap: 2rem;
}

/* Desktop Styles */
.csc-filter {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 8rem;
    height: fit-content;
}

.csc-filter h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.5rem;
    color: #333;
    font-size: 1.25rem;
}

.csc-filter h3 i {
    font-size: 0.9em;
}

.csc-filter-section {
    margin-bottom: 1.5rem;
}

.csc-filter-section:last-child {
    margin-bottom: 0;
}

.csc-filter-section h4 {
    margin: 0 0 0.75rem;
    color: #555;
    font-size: 1rem;
}

.csc-filter-section label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.csc-filter-section select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.5rem center/1em;
    padding-right: 2.5rem;
}

.csc-filter-section select::-ms-expand {
    display: none;
}

.csc-provider-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    padding: 2rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.csc-provider-card.featured {
    border: 3px solid #0097a8;
}

.csc-featured-badge {
    background: #0097a8;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 0 0 0 8px;
    font-weight: 600;
    position: absolute;
    top: 0;
    right: 0;
}

.csc-provider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.csc-provider-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: calc(100% - 2rem);
}

.csc-provider-logo {
    width: 120px;
    height: 40px;
    object-fit: contain;
    aspect-ratio: 3/1;
}

.csc-provider-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: calc(100% - 135px);
}

.csc-provider-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.csc-provider-name h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
}

.csc-provider-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.csc-provider-type {
    font-size: 0.875rem;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    width: fit-content;
    white-space: nowrap;
}

.csc-provider-type.station {
    background-color: #FEF3C7;
    color: #92400E;
}

.csc-provider-type.free {
    background-color: #ECF8F9;
    color: #0D9488;
}

.csc-provider-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.csc-info-section {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.csc-info-section h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    color: #666;
    font-size: 1rem;
}

.csc-info-section h5 i {
    font-size: 0.7em;
}

.csc-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.csc-price-item:last-child {
    margin-bottom: 0;
}

.csc-price-label {
    font-size: 0.8rem;
    color: #666;
}

.csc-price-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0097a8;
}

.csc-price-value.highlight {
    color: #0097a8;
}

.csc-price-value.free {
    color: #0097a8;
}

.csc-platform-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.csc-platform-label {
    font-size: 0.8rem;
    color: #666;
}

.csc-platform-value {
    font-size: 0.9rem;
    color: #333;
}

.csc-info-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
}

.csc-info-note i {
    color: #0097a8;
    font-size: 0.875rem;
}

.csc-provider-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.csc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.csc-button svg {
    width: 16px;
    height: 16px;
}

.csc-button-primary {
    background: #0097a8;
    color: white;
}

.csc-button-primary:hover {
    background: #007d8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: white;
}

.csc-button-secondary {
    background: #fff;
    color: #4A5568;
    border: 1px solid #E2E8F0;
}

.csc-button-secondary:hover {
    background: #F7FAFC;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.csc-no-results {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    color: #666;
}

/* Hide filter toggle and header on desktop */
.csc-filter-toggle {
    display: none;
}

.csc-filter-header {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .csc-layout {
        grid-template-columns: 100%;
        gap: 1rem;
    }

    .csc-filter {
        position: static !important;
        margin-bottom: 1rem;
        background: #f8f9fa;
        padding: 0;
        box-shadow: none;
    }

    .csc-filter-header {
        background: #fff;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .csc-filter-header h3 {
        margin: 0;
    }

    .csc-filter-toggle {
        display: block;
        transition: transform 0.3s ease;
    }

    .csc-filter-content {
        display: none;
        background: #fff;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        margin-top: 0.5rem;
    }

    .csc-filter.active .csc-filter-content {
        display: block;
    }

    .csc-filter.active .csc-filter-toggle {
        transform: rotate(180deg);
    }

    .csc-provider-card {
        padding: 2rem 1rem;
    }

    .csc-provider-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .csc-provider-main {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        width: 100%;
    }

    .csc-provider-logo {
        width: 100px;
        height: 33px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .csc-provider-title {
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 115px);
    }

    .csc-provider-name {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .csc-provider-name h3 {
        margin: 0;
        width: 100%;
    }

    .csc-provider-badges {
        margin-top: 0.25rem;
    }

    .csc-provider-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .csc-info-section {
        width: 100%;
    }

    .csc-provider-actions {
        width: 100%;
        margin-top: 1rem;
    }

    .csc-button {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .csc-button-primary {
        order: -1;
    }
}