/* ============================================
   CARD STYLES
   ============================================ */

/* Shadcn Card - Base Card Style */
.card.shadcn-card {
    border: 1px solid var(--slate-200);
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    background: white;
}

.card.shadcn-card:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}

/* Card shadows for forms */
.card.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Stat Card */
.stat-card {
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--slate-100) 100%);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out both;
}

.stat-card:nth-child(1) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.5s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    background: white;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-700);
    font-size: 1.5rem;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1;
}

/* Dashboard Card Base */
.dashboard-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out both;
}

.dashboard-card.feature-card-1 {
    animation-delay: 0.6s;
}

.dashboard-card.feature-card-2 {
    animation-delay: 0.7s;
}

.dashboard-card.feature-card-3 {
    animation-delay: 0.8s;
}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    border-color: var(--slate-300);
}

/* Card Header Mock */
.card-header-mock {
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
    padding: 1rem 1.25rem;
}

.card-title-mock {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-900);
    margin: 0;
    display: flex;
    align-items: center;
}

.card-title-mock i {
    opacity: 0.7;
}

/* Card Body Mock */
.card-body-mock {
    padding: 1.25rem;
}

/* Team Item Mock */
.team-item-mock {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--slate-50);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.team-item-mock:last-child {
    margin-bottom: 0;
}

.team-item-mock:hover {
    background: var(--slate-100);
    transform: translateX(4px);
}

.team-badge-mock {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.team-info-mock {
    flex: 1;
    min-width: 0;
}

.team-name-mock {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.team-meta-mock {
    font-size: 0.75rem;
    color: var(--slate-600);
}

/* ============================================
   RESPONSIVE DESIGN - CARDS
   ============================================ */

/* Mobile */
@media (max-width: 767px) {
    .stat-card {
        padding: 1rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .card-header-mock {
        padding: 0.875rem 1rem;
    }

    .card-body-mock {
        padding: 1rem;
    }

    .team-item-mock {
        padding: 0.625rem;
    }

    .team-badge-mock {
        width: 32px;
        height: 32px;
    }

    .team-name-mock {
        font-size: 0.8125rem;
    }

    .team-meta-mock {
        font-size: 0.6875rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .stat-label {
        font-size: 0.6875rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }
}
