/* Custom styles for NFL Survivor Pool */

.navbar-brand {
    font-weight: bold;
}

.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn {
    transition: all 0.2s;
}

.alert {
    border-radius: 8px;
}

.form-control, .form-select {
    border-radius: 6px;
}

/* Pool status badges */
.badge-active {
    background-color: #28a745;
}

.badge-eliminated {
    background-color: #dc3545;
}

/* Pick status indicators */
.pick-correct {
    color: #28a745;
    font-weight: bold;
}

.pick-incorrect {
    color: #dc3545;
    font-weight: bold;
}

.pick-pending {
    color: #ffc107;
    font-weight: bold;
}

/* Admin dashboard */
.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.stat-card .card-body {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
}

/* Team logos */
.team-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
}
