/* Stand 31.12.2025 - Dashboard Theme */
:root {
    --discord-dark: #1a1a1a;
    --discord-card: #252525;
    --discord-blue: #5865F2;
    --discord-green: #3ba55c;
    --discord-yellow: #faa61a;
    --discord-red: #ed4245;
    --text-main: #eeeeee;
    --text-muted: #b9bbbe;
}

body {
    background-color: var(--discord-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
}

/* Sidebar Styling */
#sidebar {
    background-color: #111111 !important;
    min-height: 100vh;
    box-shadow: 4px 0 10px rgba(0,0,0,0.3);
}

#sidebar .nav-link {
    color: var(--text-muted);
    transition: all 0.2s;
    border-radius: 5px;
    margin-bottom: 5px;
}

#sidebar .nav-link:hover, #sidebar .nav-link.active {
    background-color: var(--discord-blue);
    color: #fff;
}

/* Card Styling */
.card {
    background-color: var(--discord-card);
    border: 1px solid #333;
    border-radius: 8px;
}

.card-header {
    border-bottom: 1px solid #333;
    font-weight: bold;
}

/* Table Styling */
.table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-main);
    border-color: #333;
}

/* Form Elements */
.form-control, .form-select {
    background-color: #121212;
    border: 1px solid #444;
    color: #fff;
}

.form-control:focus {
    background-color: #151515;
    border-color: var(--discord-blue);
    color: #fff;
    box-shadow: 0 0 0 0.25 margin rgba(88, 101, 242, 0.25);
}

/* Login Page Special */
.login-box {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background: var(--discord-card);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}