/* Apply old-school font and dark green text */
html {
    font-size: 14px;
    font-family: 'Courier New', Courier, monospace; /* Monospace font for that retro computer look */
    color: #398639; /* Dark green color for text */
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: white ; /* Optional: makes the background black like a retro computer screen */
    color: #398639; /* Ensures dark green text on all parts of the body */
    font-family: 'Courier New', Courier, monospace; /* Ensures the font applies to the body as well */
}

/* Global overrides for Identity pages */
.nav-link {
    color: #398639 !important;
    font-family: 'Courier New', Courier, monospace !important;
}

.nav-pills .nav-link.active,
.nav-link:hover {
    background-color: #398639 !important;
    color: white !important;
}

.btn-primary, .btn-outline-primary {
    background-color: #398639 !important;
    border-color: #398639 !important;
    color: white !important;
}

.btn-primary:hover,
.btn-outline-primary:hover {
    background-color: #2a5c2a !important;
    border-color: #2a5c2a !important;
}

