html {
  font-size: 14px;
  background-color: #f7f5f2;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: #f7f5f2;
}

label {
    font-weight: bold;
}

header {
    background-color: #234e70;
}

.btn-pbjc-primary {
    color: #fff;
    background-color: #234e70;
}

    .btn-pbjc-primary:hover {
        background-color: #f9f38e;
        color: #234e70;
    }

.btn-pbjc-secondary {
    color: #234e70;
    background-color: #c4b59d;
}

    .btn-pbjc-secondary:hover {
        background-color: #f9f38e;
        color: #234e70;
    }

.btn-pbjc-danger {
    color: #fff;
    background-color: #c33c3c;
}

    .btn-pbjc-danger:hover {
        background-color: #f9f38e;
        color: #c33c3c;
    }

.nav-tabs {
    border-bottom: none;
    flex-wrap: wrap;
    gap: 0;
    row-gap: 10px;
}

    .nav-tabs .nav-link {
        border-radius: 15px 15px 0 0 !important;
        background-color: #234e70;
        color: white !important;
        margin-bottom: 2px;
        border: 1px solid #234e70;
    }

        .nav-tabs .nav-link:hover {
            background-color: #1a3a52;
            color: white !important;
            border-color: #1a3a52;
        }

        .nav-tabs .nav-link.active {
            background-color: white !important;
            color: #234e70 !important;
            font-weight: 600;
            border-color: #dee2e6 #dee2e6 #fff;
        }

.nav-item {
    margin-bottom: 0;
}