:root {
    --abbott-primary-blue-color: #009CDE;
    --abbott-black-color: #000000;
    --abbott-dark-blue-color: #002A3A;
    --abbott-medium-blue-color: #004F71;
    --abbott-light-blue-color: #5BC2E7;
    --abbott-mint-color: #64CCC9;
    --abbott-purple-color: #470A68;
    --abbott-magenta-color: #AA0061;
    --abbott-red-color: #E4002B;
    --abbott-gold-color: #EEB33B;
    --abbott-yellow-color: #FFD100;
    --abbott-medium-green-color: #00B140;
    --abbott-light-green-color: #7CCC6C;
    --abbott-charcoal-color: #222731;
    --abbott-dark-gray-color: #63666A;
    --abbott-medium-gray-color: #888B8D;
    --abbott-light-gray-color: #D9D9D9;
}
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%;
}

body {
  margin-bottom: 60px;
}

.active-nav {
    font-weight: bold;
    color: var(--abbott-primary-blue-color);
    text-decoration: underline !important;
}

.banner {
    background-color: var(--abbott-primary-blue-color);
    color: white !important;
    padding: 10px;
    text-align: center;
}

.btn {
    background-color: var(--abbott-primary-blue-color);
    color: white;
    text-align: center;
}

.btn:hover {
    background-color: var(--abbott-primary-blue-color) !important;
    color: white !important;
}

.nav-link:hover {
    color: var(--abbott-dark-blue-color);
    text-decoration: solid;
    font-weight: bold;
}

.centered-container {
    width: 100%;
    margin: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group select,
.form-group textarea,
.form-group input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.form-group span {
    display: block;
    margin-top: 5px;
    color: red;
}

.table-container {
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid black;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    text-align: left;
}

.styled-table thead tr {
    background-color: var(--abbott-primary-blue-color);
    color: whitesmoke;
    text-align: left;
}

.styled-table th, .styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid var(--abbott-light-gray-color);
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: var(--abbott-light-gray-color);
}

.styled-table tbody tr:hover {
    background-color: var(--abbott-mint-color);
}

.popup-style {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-dropshadow {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 50%;
    width: 90%;
}