/* FT2 Community - Custom Styles */

body {
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar-brand {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.card {
    border-radius: 8px;
}

.card-header {
    font-weight: 600;
}

.table th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge {
    letter-spacing: 0.5px;
}

/* Homepage hero */
.display-4 {
    letter-spacing: 2px;
}

/* Trophy colors */
.table-warning td:first-child {
    font-weight: bold;
}

/* Dark mode overrides */
[data-bs-theme="dark"] body {
    background-color: #1a1a2e;
}

[data-bs-theme="dark"] .navbar {
    background-color: #16213e !important;
}

[data-bs-theme="dark"] footer {
    background-color: #16213e !important;
}

[data-bs-theme="dark"] .card {
    border-color: #2a2a4a;
}

/* Dark mode toggle */
#darkModeToggle {
    border: none;
    background: none;
    font-size: 1.1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    .display-6 {
        font-size: 1.5rem;
    }
    .table {
        font-size: 0.85rem;
    }
    .card-body {
        padding: 0.75rem;
    }
    .btn-sm {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem;
    }
    h2 {
        font-size: 1.4rem;
    }
}
