
body {
    background: linear-gradient(to right, #00264f, #004c97);
    min-height: 100vh;
}

.btn-primary {
    color: white;
    font-weight: bold;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: none;
    padding: 0.75rem 1.25rem;
    background-image: linear-gradient(90deg, #004c97, #007bff, #004c97, #007bff);
    animation: gradient-move 4s ease-in-out infinite alternate;
    transition: transform 0.5s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.container {
    padding-top: 6rem;
}

.starter-template {
    padding: 3rem 1.5rem;
    text-align: center;
}

.jumbotron {
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 0;
    background-color: #fff;
}

.bg-dark {
    background-color: #004C97 !important;
}

.navbar {
    padding: 0 1rem;
}

.navbar-brand img {
    height: 35px;
    width: 125px;
}

@media (min-width: 768px) {
    .jumbotron {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.navbar-dark .navbar-nav .nav-link {
    color: #999999;
}

.jumbotron p:last-child {
    margin-bottom: 0;
}

.jumbotron h1 {
    font-weight: 300;
}

.jumbotron .container {
    max-width: 40rem;
}

footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

footer p {
    margin-bottom: .25rem;
}

.intake {
    padding-bottom: 28px;
    padding-top: 28px
}

.table-color {
    background-color: whitesmoke;
}

.simmons-buttons {
    background-color: #004c97;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

.form-checkbox {
    margin-top: 10px;
    height: 35px;
    width: 35px;
}

.hidden {
    display: none
}

nav.simmons-navbar-bg {
    background-color: #004c97 !important;
}

/* Responsive Font Sizing */
@media (max-width: 767px) {
    body, p, ul, ol, li, h1, h2, h3, h4, h5, h6, a, .nav-link, .btn, input, select, textarea, .form-control,
    .dropdown-menu, .form-select, .form-input, .pill-filter, .filter-buttons, .btn-primary, .btn-secondary {
        font-size: 0.875rem;
    }
}

