body.user-layout {
    background-color: #F0E6D2 !important;
}

.container {
    background: #F0E6D2;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Общие стили для всего сайта */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F8F9FA; /* Светлый фон */
    color: #333;
}

/* Контейнер для таблицы */
.table-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Таблица */
table {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* Заголовок таблицы */
thead {
    background-color: #007BFF;
    color: white;
    font-weight: bold;
}

/* Чередование строк */
tbody tr:nth-child(odd) {
    background-color: #F1F3F5;
}

tbody tr:hover {
    background-color: #E9ECEF;
}

/* Ячейки таблицы */
td, th {
    padding: 12px;
    text-align: center;
}

/* Заголовок */
h1 {
    font-weight: 600;
    color: #007BFF;
}

