/* Кастомные стили для админ-панели */

/* Скрываем стандартную боковую панель навигации Django */
#nav-sidebar {
    display: none !important;
}

/* Стили для нашего кастомного бокового меню навигации */
.custom-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 250px;
    background: #2c3e50;
    padding: 20px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

/* Смещаем основной контент вправо, чтобы освободить место для sidebar */
.main > .content {
    margin-left: 250px;
    padding: 20px;
}

/* Адаптация header */
#header {
    margin-left: 250px;
}

/* Стили секций меню */
.custom-sidebar .sidebar-section {
    margin-bottom: 25px;
}

.custom-sidebar .sidebar-section:last-child {
    margin-bottom: 0;
}

.custom-sidebar .sidebar-section h3 {
    font-size: 12px;
    font-weight: 600;
    color: #95a5a6;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #34495e;
    padding-bottom: 8px;
}

.custom-sidebar .sidebar-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-sidebar .sidebar-section ul li {
    margin-bottom: 5px;
}

.custom-sidebar .sidebar-section ul li:last-child {
    margin-bottom: 0;
}

.custom-sidebar .sidebar-section ul li a {
    display: block;
    padding: 10px 15px;
    color: #ecf0f1;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.custom-sidebar .sidebar-section ul li a:hover {
    background: #3498db;
    color: white;
    transform: translateX(5px);
}

.module {
    margin-bottom: 20px;
}

.module table {
    width: 100%;
    border-collapse: collapse;
}

.module thead th {
    background-color: #f5f5f5;
    padding: 10px;
    text-align: left;
    font-weight: 600;
    color: #333;
}

.module tbody td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.module tbody tr:hover {
    background-color: #f9f9f9;
}

.module a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

.module a:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Специальные стили для страницы входа - отключаем sidebar */
body.login .custom-sidebar {
    display: none;
}

body.login .main > .content {
    margin-left: 0;
}

body.login #header {
    margin-left: 0;
}