/* Custom styles for TII subdomain */
:root {
    --bs-primary: rgb(35, 55, 70);
    --bs-primary-rgb: 35, 55, 70;
    --bs-primary-bg-subtle: rgba(35, 55, 70, 0.1);
    --bs-primary-border-subtle: rgba(35, 55, 70, 0.2);
    --bs-primary-text-emphasis: #1e2f3c;
}

[data-bs-theme="dark"] {
    --bs-primary: rgb(55, 85, 110);
    --bs-primary-rgb: 55, 85, 110;
    --bs-primary-bg-subtle: rgba(35, 55, 70, 0.2);
    --bs-primary-border-subtle: rgba(35, 55, 70, 0.3);
    --bs-primary-text-emphasis: #8fa8bf;
}

/* Navbar theming */
.bd-navbar {
    background-color: rgb(35, 55, 70) !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

/* Button theming */
.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: #2a4357;
    --bs-btn-hover-border-color: #243a4a;
    --bs-btn-active-bg: #1f3240;
    --bs-btn-active-border-color: #1a2a36;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}

/* Link theming */
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: var(--bs-primary);
}

a {
    color: var(--bs-primary);
}

a:hover {
    color: #2a4357;
}
