/* Global */
html, body {
    height: 100%;
    background-color: #0d1117;
    color: #c9d1d9;
}

body {
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

main {
    flex: 1;
}

footer {
    margin-top: auto;
}

/* Dark mode theme */
.btn-primary {
    background-color: #1f6feb;
    border-color: #1f6feb;
}

.btn-primary:hover {
    background-color: #388bfd;
    border-color: #388bfd;
}

.form-control, .form-select {
    background-color: #0d1117 !important;
    border-color: #30363d !important;
    color: #c9d1d9 !important;
}

.form-control:focus, .form-select:focus {
    background-color: #0d1117 !important;
    border-color: #58a6ff !important;
    color: #c9d1d9 !important;
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.25);
}

.card {
    background-color: #161b22 !important;
    border-color: #30363d !important;
}

.list-group-item {
    border-color: #30363d !important;
}

.list-group-item-action:hover {
    background-color: #21262d;
    border-color: #58a6ff !important;
}

.list-group-item-action.active {
    background-color: #1f6feb;
    border-color: #1f6feb !important;
}

.navbar {
    background-color: #0d1117 !important;
}

/* Cards and panels */
.bg-dark {
    background-color: #0d1117 !important;
}

.bg-black {
    background-color: #010409 !important;
}

.border-secondary {
    border-color: #30363d !important;
}

.text-secondary {
    color: #8b949e !important;
}

.text-muted {
    color: #6e7681 !important;
}

/* Badges */
.badge.bg-primary {
    background-color: #1f6feb !important;
}

/* Forms */
.form-check-input:checked {
    background-color: #1f6feb;
    border-color: #1f6feb;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #161b22;
}

::-webkit-scrollbar-thumb {
    background: #30363d;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #484f58;
}