.operators-container {
    max-width: 1400px;
    margin: 100px auto 40px;
    padding: 0 20px;
}

.operators-header {
    margin-top: 64px !important;
    margin-bottom: 32px;
}

.operators-header h1 {
    font-family: "Google Sans Flex", sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 16px 0;
}

.operators-controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px;
}

.search-box {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-box input {
    width: 90%;
    padding: 12px 16px 12px 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-family: "Google Sans Flex", sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-box .material-symbols {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    pointer-events: none;
}

.sort-controls {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sort-btn {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Google Sans Flex", sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sort-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.sort-btn.active {
    background: #667eea;
    color: white;
    border-color: transparent;
}

.sort-btn .material-symbols {
    font-size: 18px;
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.operator-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.operator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.operator-card-header {
    height: 80px;
    position: relative;
    overflow: hidden;
}

.operator-card-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.8;
}

.operator-card-content {
    padding: 16px;
    position: relative;
}

.operator-logo-wrapper {
    width: 64px;
    height: 64px;
    background: rgb(46, 46, 46);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -48px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(26, 26, 26, 0.9);
}

.operator-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
}

.operator-logo.placeholder {
    font-size: 32px;
    color: #666;
}

.operator-card-title {
    font-family: "Google Sans Flex", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.operator-card-stats {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.operator-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.operator-stat .material-symbols {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.no-results .material-symbols {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.no-results h2 {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 1.5rem;
    margin: 0 0 8px 0;
}

.request-operator-banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-top: 32px;
}

.request-operator-banner h3 {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 1.3rem;
    color: white;
    margin: 0 0 12px 0;
}

.request-operator-banner p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
}

@media (max-width: 768px) {
    .operators-header h1 {
        font-size: 2rem;
    }

    .operators-controls {
        flex-direction: column;
    }

    .search-box {
        width: 100%;
    }

    .operators-grid {
        grid-template-columns: 1fr;
    }
}