html {
  font-size: 14px;
}

@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%;
}

header {
    padding-left: 0px;
    padding-right: 0px;
    background-color: #0058A2 !important;
}

    header * {
        color: white;
    }

body {
  margin-bottom: 60px;
}

.navbar.custom-blue {
    background-color: #0058A2 !important; /* Replace with your preferred shade */
    color: white;
}

    .navbar.custom-blue .nav-link {
        color: white;
    }

        .navbar.custom-blue .nav-link:hover {
            color: #cce4ff; /* Optional: light hover effect */
        }

.section .header {
    cursor: pointer;
    background: #f4f4f4;
    padding: 12px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.section .content {
    display: none;
    padding: 12px;
    border: 1px solid #ddd;
}

.section.open .content {
    display: block;
}

.section.open .arrow {
    transform: rotate(180deg);
}

.badge-draft {
    background-color: #f1f1f1;
    color: #333;
}

.badge-submitted {
    background-color: #e9ecef;
    color: #000;
}

.badge-more-info {
    background-color: #ffc107; /* yellow */
    color: #000;
}

.badge-under-review {
    background-color: #fd7e14; /* orange */
    color: #fff;
}

.badge-cancelled {
    background-color: #6c757d; /* gray */
    color: #fff;
}

.badge-declined {
    background-color: #dc3545; /* red */
    color: #fff;
}

.badge-approved {
    background-color: #198754; /* green */
    color: #fff;
}

.badge-closeout {
    background-color: #20c997; /* teal */
    color: #fff;
}


footer .doit-logo {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 80px !important;
    height: auto !important;
    max-width: 80px !important;
    max-height: 80px !important;
    object-fit: contain;
    display: block;
}

footer {
    flex-shrink: 0;
}

