/**
 * Hockey Drop-In - Custom Styles
 */

/* General */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.15s ease-in-out;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Navbar */
.navbar-brand {
    font-weight: 600;
}

/* Buttons */
.btn {
    border-radius: 0.375rem;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Forms */
.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Tables */
.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

/* Event Cards */
.event-card {
    border-left: 4px solid #0d6efd;
}

.event-card.cancelled {
    border-left-color: #dc3545;
    opacity: 0.7;
}

/* Team Display */
.team-a {
    background-color: #f8f9fa;
    border-left: 4px solid #ffffff;
}

.team-b {
    background-color: #343a40;
    color: #ffffff;
    border-left: 4px solid #343a40;
}

/* Position Badges */
.badge-forward {
    background-color: #198754;
}

.badge-defense {
    background-color: #0dcaf0;
}

.badge-goalie {
    background-color: #ffc107;
    color: #000;
}

/* Waiting List */
.waiting-list {
    background-color: #fff3cd;
    border-radius: 0.375rem;
    padding: 0.5rem;
}

/* Skill Level Indicators */
.skill-1 { color: #198754; }
.skill-2 { color: #0dcaf0; }
.skill-3 { color: #ffc107; }
.skill-4 { color: #fd7e14; }
.skill-5 { color: #dc3545; }

/* Dashboard Stats */
.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d6efd;
}

.stat-card .stat-label {
    color: #6c757d;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-card .stat-number {
        font-size: 1.75rem;
    }
}

/* Footer */
footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Loading Spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 0.375rem;
}

/* Print Styles */
@media print {
    .navbar, footer, .btn, .no-print {
        display: none !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}
