/* common.css - base styles for RustSentinel (dark mode) */
body {
    background: #181a20;
    color: #e3e6f0;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container, .main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

h1, h2, h3, h4, h5 {
    color: #fff;
    font-weight: 600;
}

.card, .feature-box {
    background: #23263a;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    padding: 20px;
    margin-bottom: 18px;
}

.btn, button {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}
.btn:hover, button:hover {
    background: #1e40af;
}

.navbar, .secondary-nav {
    background: #1b1f27;
    color: #e3e6f0;
    padding: 12px 24px;
    border-radius: 0 0 12px 12px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}
a.navbar-link {
    color: #e3e6f0;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: block;
    transition: background 0.2s;
}
a.navbar-link.active {
    background: #1e293b;
    color: #4ade80;
}
a.navbar-link:hover {
    background: #374151;
    color: #fff;
}

/* Utility classes */
.text-center { text-align: center; }
.text-muted { color: #a0aec0; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.flex { display: flex; }
.gap-2 { gap: 16px; }

/* Hide scrollbars for main content */
::-webkit-scrollbar { width: 0; background: transparent; }
