body {
    font-family: 'Roboto', sans-serif;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.card {
    border-radius: 0.5rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

.input-group {
    max-width: 300px;
}

.modal-content {
    border-radius: 0.5rem;
}
.dropdown-menu {
    display: none; /* Убедимся, что по умолчанию скрыто */
}

.dropdown-menu.show {
    display: block !important; /* Принудительно показываем при наличии класса show */
}