html {
    font-size: 14px;
    height: 100%;
    position: relative;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.text-hover-danger:hover {
    color: #353030 !important;
    font-weight:bold;
    font-size: 15pt !important;
}

.text-hover-warning:hover {
    font-weight: bold;
    font-size: 18pt !important;
}

.btn-primary {
    color: #fff;
    background-color: #d90000;
    border-color: #d90000;
}

    .btn-primary:hover {
        background-color: #c40000;
        border-color: #c40000;
    }

.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-brand {
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 18px; /* Adjust font size for mobile */
    }

        .navbar-brand img {
            max-width: 120px; /* Adjust logo size for mobile */
            height: auto;
        }

    .container-fluid {
        padding-left: 15px; /* Add responsive padding */
        padding-right: 15px;
    }

    footer {
        padding: 0.5rem; /* Reduce padding for mobile footer */
    }
}