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;
    padding-top: 50px;
    padding-bottom: 20px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.custom-container {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 80px;
}

.custom-navbar {
    max-width: 90%;
    margin: 0 auto;
}


.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.dl-horizontal dt {
    white-space: normal;
}

input,
select,
textarea {
    max-width: 280px;
}


.navbar {
    background-color: #212529 !important; /* Чёрный фон */
    border-bottom: 1px solid #343a40; /* Тёмно-серая граница */
}

    .navbar .nav-link {
        color: white !important; /* Белый текст */
    }

        .navbar .nav-link:hover {
            color: #adb5bd !important; /* Светло-серый при наведении */
        }

.dropdown-menu-dark {
    background-color: #343a40 !important; /* Тёмный фон */
    border: 1px solid #212529;
}

    .dropdown-menu-dark .dropdown-item {
        color: white !important; /* Белый текст */
    }

        .dropdown-menu-dark .dropdown-item:hover {
            background-color: #495057 !important; /* Серый фон при наведении */
        }
