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;
}

.flex-buttons {
    display: flex;
    gap: 10px; /* Adjust spacing between buttons */
}

.container-custom {
    max-width: 95%; /* Adjust this value to suit your needs */
    margin: 0 auto; /* Centers the container */
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active,
.btn-outline-dark.active,
.open .dropdown-toggle.btn-outline-dark {
    background-color: #EF3654;
    color: white;
    border-color: black;
}

button:hover,
button:focus,
button:active,
button.active,
.open .dropdown-toggle {
    background-color: #EF3654;
    color: white;
    border-color: black;
}

