html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.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;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

/* Text color for the new sidebar implementation */
.sidebar .nav-item .nav-link,
.sidebar .navbar-brand,
.sidebar details summary {
    color: #ffffff !important;
}

.sidebar .nav-item .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.sidebar .nav-item a.active {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

/* InteractiveMenu styles - moved from scoped CSS to fix visibility issues */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background: #ff8c00;
    z-index: 1002;
    transition: transform 0.25s ease;
    overflow-y: auto;
}

.sidebar.hidden {
    transform: translateX(-100%);
    pointer-events: none;
    visibility: hidden;
}

.sidebar.visible {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1001;
    cursor: pointer;
}

.menu-button {
    position: fixed;
    top: 10px;
    left: 10px;
    background: #ff8c00;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 24px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.menu-button:hover {
    background: #e67e00;
}

.menu-button:active {
    transform: scale(0.95);
}

.menu-button:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .sidebar {
        width: 80vw;
    }
}
