/* TVFL Recruiting Hub Widget */

.tvfl-recruiting-hub {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tvfl-recruit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.tvfl-recruit-item:last-child {
    border-bottom: none;
}

/* Number badge */
.tvfl-recruit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 5px;
    color: var(--e-global-color-primary) !important;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

/* Team logo */
.tvfl-recruit-logo {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Info block: name, group, stars */
.tvfl-recruit-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.tvfl-recruit-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--e-global-color-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tvfl-recruit-group {
    display: block;
    font-size: 13px;
    color: rgba(224, 224, 224, 0.5);
}

/* Name + stars inline row */
.tvfl-recruit-name-row {
    display: flex;
    align-items: center;
}

/* Star rating */
.tvfl-stars {
    display: flex;
    align-items: center;
    gap: 1px;
    line-height: 1;
    margin-left: 10px;
}

.tvfl-star {
    font-size: 14px;
    line-height: 1;
}

.tvfl-star.filled {
    color: #F5C518;
}

.tvfl-star.empty {
    color: rgba(255, 255, 255, 0.2);
}

/* Status: text only + school */
.tvfl-recruit-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.tvfl-status-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}

.tvfl-status-school {
    display: block;
    font-size: 11px;
    color: rgba(224, 224, 224, 0.6);
    text-align: right;
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 1024px) {
    .tvfl-recruit-item {
        gap: 10px;
        padding: 8px 0;
    }

    .tvfl-recruit-number {
        min-width: 28px;
        height: 28px;
        font-size: 15px;
    }

    .tvfl-recruit-logo {
        width: 40px;
        height: 40px;
    }

    .tvfl-recruit-name {
        font-size: 14px;
    }

    .tvfl-recruit-group {
        font-size: 12px;
    }

    .tvfl-star {
        font-size: 12px;
    }

    .tvfl-status-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .tvfl-status-school {
        font-size: 10px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tvfl-recruit-item {
        gap: 8px;
        padding: 6px 0;
    }

    .tvfl-recruit-number {
        min-width: 24px;
        height: 24px;
        font-size: 13px;
    }

    .tvfl-recruit-logo {
        width: 32px;
        height: 32px;
    }

    .tvfl-recruit-name {
        font-size: 13px;
    }

    .tvfl-recruit-group {
        font-size: 11px;
    }

    .tvfl-star {
        font-size: 11px;
    }

    .tvfl-status-badge {
        font-size: 8px;
        padding: 2px 5px;
    }

    .tvfl-status-school {
        font-size: 9px;
    }
}
