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;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .navbar-center .nav-item {
        margin-left: 15px;
        margin-right: 15px;
    }

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #f0f4f7;
    color: #333;
}

.hidden-card {
    background-color: #f0f4f7;
}

.custom-navbar {
    background-color: #001f3f;
}

.navbar {
    background-color: #001f3f;
}

.navbar-brand, .nav-link {
    color: #fff !important;
}

.footer {
    background-color: #001f3f;
    color: #fff;
}

.logo {
    height: 40px;
}

.text-center {
    margin-top: 50px;
}

h1.display-4 {
    color: #001f3f;
}

.text-link {
    color: #001f3f;
}

.text-content {
    color: #333;
}

.pop-out {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .pop-out h1 {
        color: #001f3f;
        text-align: center;
        margin-bottom: 20px;
    }

    .pop-out h2 {
        color: #001f3f;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .pop-out h3 {
        color: #333333;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .pop-out p {
        color: #555555;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .pop-out ul {
        color: #555555;
        margin-left: 20px;
        margin-bottom: 10px;
    }

        .pop-out ul li {
            margin-bottom: 5px;
        }

.big-button {
    display: inline-block;
    padding: 20px 40px;
    margin-top: 30px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: #001f3f;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .big-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    }

    .big-button:active {
        transform: translateY(-1px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    .big-button small {
        display: block;
        font-size: 14px;
        font-weight: normal;
    }

.dropdown-container {
    display: flex;
    align-items: center;
}

    .dropdown-container select {
        margin-right: 10px;
        padding: 5px;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    .dropdown-container input[type="submit"] {
        background-color: #001f3f;
        color: #fff;
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .dropdown-container input[type="submit"]:hover {
            background-color: #0056b3;
        }

.identity-nav .nav-link {
    color: #001f3f !important; /* Change to your desired color */
    background-color: transparent; /* Ensure background is transparent or a suitable color */
}

    .identity-nav .nav-link:hover {
        color: #258cfb !important; /* Change to your desired hover color */
    }

    .identity-nav .nav-link.active {
        color: #fff !important; /* Ensure active link is visible */
        background-color: #001f3f; /* Change to your desired active background color */
    }
