/* Общие стили */
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px;
    padding: 0;
}

/* Контейнер с пользователями */
.container {
	justify-content: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* Заголовок */
h1 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

/* Заголовок формы */
h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

/* Поле ввода поиска */
input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 16px;
}

/* Эффект при фокусе на поле ввода */
input:focus {
    border-color: #007bff;
    outline: none;
}

/* Кнопки */
button, .logout {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    background: #007bff;
    color: white;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
}

/* Эффект при наведении на кнопки */
button:hover, .logout:hover {
    background: #0056b3;
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

/* Список пользователей */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

ul li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    color: #333;
}

ul li:last-child {
    border-bottom: none;
}

/* Дополнительный стиль для сообщения "Нет пользователей" */
p {
    color: #999;
    font-size: 16px;
    text-align: center;
}

/* Стили для навигации */
.logout {
    background: #28a745;
    text-align: center;
    font-size: 16px;
}

.logout:hover {
    background: #1e7e34;
    transform: scale(1.05);
}
