/* Base Styling */
body {
    background: #0f1115;
    color: #e0e6ed;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #3399ff;
}

/* Navbar Styling */
.navbar {
    background-color: #1a1d24 !important;
    border-bottom: 1px solid #1a2332;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.25);
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
    min-height: 48px !important;
}

.navbar-brand {
    font-weight: 700;
    color: #0d6efd !important;
    text-shadow: 0 0 8px rgba(13, 110, 253, 0.6);
    font-size: 1.1rem;
    line-height: 1.2;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-nav .nav-link {
    color: #bfc8d4 !important;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background-color: rgba(13, 110, 253, 0.1);
}

/* Container */
.container {
    padding: 2rem;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Form Elements */
label {
    color: #bfc8d4;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    background: #121418 !important;
    border: 1px solid #2c3038;
    border-radius: 6px;
    color: #e0e6ed !important;
    padding: 10px;
    width: 100%;
    margin-bottom: 1rem;
    transition: border 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: #b3c1d1 !important;
    opacity: 1 !important;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
    background-color: #1a1d24;
    color: #fff !important;
}

/* Buttons */
.btn-primary {
    background: #0d6efd;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0078ff;
    transform: translateY(-2px);
}

/* Cards / Panels */
.card {
    background: #1a1d24;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.2);
    margin-top: 2rem;
}

/* Footer */
footer {
    background: #1a1d24;
    color: #bfc8d4;
    text-align: center;
    padding: 1.2rem 0;
    font-size: 0.9rem;
    border-top: 1px solid #1a2332;
}

/* Register / Login helper text */
.card .text-center a {
    color: #bfc8d4;
    font-weight: 500;
}

.card .text-center a:hover {
    color: #cfe2ff;
}