:root {
    -- Forum Colors
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --accent: #0f3460;
    --highlight: #e94560;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.3rem;
}

.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.thread-card .card-body:hover {
    background-color: #f8f9fa;
}

.post-content {
    line-height: 1.7;
    word-wrap: break-word;
}

.post-content code {
    background-color: #f1f3f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.post-content strong {
    font-weight: 600;
}

.post-content em {
    font-style: italic;
}

.pagination .page-link {
    color: #0f3460;
}

.pagination .page-item.active .page-link {
    background-color: #0f3460;
    border-color: #0f3460;
}

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

.btn-primary:hover {
    background-color: #16213e;
    border-color: #16213e;
}

a {
    color: #0f3460;
}

a:hover {
    color: #e94560;
}

.footer {
    background-color: #1a1a2e !important;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.badge {
    font-weight: 500;
}

.list-group-item {
    border-left: none;
    border-right: none;
}

.list-group-item:first-child {
    border-top: none;
}

.list-group-item:last-child {
    border-bottom: none;
}

.form-control:focus {
    border-color: #0f3460;
    box-shadow: 0 0 0 0.2rem rgba(15, 52, 96, 0.25);
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .d-flex .me-3 {
        display: none;
    }
}
