/* Teams Page Styling */

/* Team avatar placeholder */
.team-avatar-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Team logo placeholder */
.team-logo-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 600;
}

/* Win rate bar */
.win-rate-bar {
    height: 6px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.win-rate-progress {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--success-color));
    border-radius: 3px;
}

/* Avatar placeholder */
.avatar-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Team card hover effect */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Team statistics cards */
.stat-card {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Team member list */
.team-member-item {
    transition: background-color 0.2s ease;
}

.team-member-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Team match result badges */
.badge-win {
    background-color: var(--success-color);
}

.badge-loss {
    background-color: var(--danger-color);
}

.badge-draw {
    background-color: var(--warning-color);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .team-logo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .win-rate-bar {
        width: 40px !important;
    }
}
