/* ============================================
   Editor's Picks - Frontend Widget Styles
   ============================================ */

.toolboxsaas-ep-widget {
    max-width: 100%;
}

/* ---- Tabs ---- */
.toolboxsaas-ep-tabs {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.toolboxsaas-ep-tab {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toolboxsaas-ep-tab:hover {
    color: #333;
}

.toolboxsaas-ep-tab.active {
    color: #3B82F6;
    border-bottom-color: #3B82F6;
}

.toolboxsaas-ep-tab i {
    font-size: 14px;
}

/* ---- Tools Container ---- */
.toolboxsaas-ep-tools-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 200px;
    transition: opacity 0.3s;
}

.toolboxsaas-ep-tools-container.toolboxsaas-ep-loading {
    opacity: 0.4;
    pointer-events: none;
}

/* ---- Ranked Card Wrapper ---- */
.toolboxsaas-ep-ranked-card {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
}

.toolboxsaas-ep-ranked-card .toolboxsaas-atbc-tool-card {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

.toolboxsaas-ep-card-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 800;
    color: #3B82F6;
    background: #EEF2FF;
    border-radius: 10px;
    margin-right: 14px;
}

/* Top 3 medal badges */
.toolboxsaas-ep-card-rank--medal {
    background: none;
    width: 40px;
    height: 40px;
}

.toolboxsaas-ep-card-rank--medal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .toolboxsaas-ep-tabs {
        gap: 10px;
    }

    .toolboxsaas-ep-tab {
        font-size: 14px;
        padding: 10px 14px;
    }

    .toolboxsaas-ep-card-rank {
        width: 28px;
        height: 28px;
        font-size: 13px;
        margin-right: 10px;
    }

    .toolboxsaas-ep-card-rank--medal {
        width: 32px;
        height: 32px;
    }
}
