/* admin-style.css */

.admin-header {
    text-align: center;
    margin-bottom: 40px;
}

.admin-header h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* ИЗМЕНЕНИЕ 1: Добавляем max-height и overflow для скроллинга */
.table-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    max-height: 75vh; /* Ограничиваем высоту */
    overflow-y: auto; /* Добавляем вертикальный скролл */
    position: relative; /* Для позиционирования шапки */
}

.devices-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.devices-table thead th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid #dee2e6;
    /* Делаем шапку "липкой" при скролле */
    position: sticky;
    top: 0;
    z-index: 10;
}

.devices-table tbody td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.devices-table tbody tr:last-child td {
    border-bottom: none;
}

.devices-table tbody tr:hover {
    background-color: #f1f3f5;
}

.devices-table .loader {
    text-align: center;
    font-style: italic;
    color: #888;
    padding: 40px;
}

.device-id-cell {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flag {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
}

.flag-suspicious { background-color: #f39c12; }
.flag-banned { background-color: #e74c3c; }
.flag-clean { background-color: #2ecc71; }
.flag-default { background-color: #95a5a6; }

.action-btn {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 16px;
    padding: 5px;
    margin: 0 5px;
    transition: color 0.2s;
}
.action-btn:hover { color: #3498db; }


/* Стили для модального окна */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none; /* ИЗМЕНЕНИЕ: По умолчанию окно скрыто */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #ffffff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.modal-header h3 {
    margin: 0;
    font-size: 22px;
    color: #2c3e50;
}

.modal-close-btn {
    font-size: 28px;
    font-weight: bold;
    color: #777;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-body {
    overflow-y: auto;
    line-height: 1.6;
}

.modal-body h4 {
    font-size: 18px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-body ul {
    list-style-type: none;
    padding: 0;
}

.modal-body li {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}
.modal-body li span {
    font-weight: 700;
    margin-left: 10px;
}

.btn__clear {
    background-color: #c0392b;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s; 
}

.filters-container {
    display: flex;
    flex-wrap: wrap; /* Для мобильных устройств */
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.search-input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 40%;
    min-width: 250px; /* Чтобы не сжимался слишком сильно */
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.filter-buttons button {
    background-color: #f0f0f0;
    border: none;
    padding: 10px 15px;
    margin-left: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

.filter-buttons button:hover {
    background-color: #e0e0e0;
}

.filter-buttons button.active {
    background-color: #2c3e50; /* Темный цвет для активной кнопки */
    color: white;
}

/* Стили для "живой" консоли */
.live-console-container {
    background-color: #2b3e50;
    /* ИСПРАВЛЕНИЕ 3: Скругляем только верхние углы, делая низ "квадратным" */
    border-radius: 12px 12px 0 0;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 60vh;
}

.console-header {
    background-color: #34495e;
    padding: 12px 20px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Убедимся, что шапка не сжимается */
    flex-shrink: 0;
}

.console-status {
    display: flex;
    align-items: center;
}

#status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    transition: background-color 0.5s;
}
#status-indicator.connected { background-color: #2ecc71; } /* Зеленый */
#status-indicator.disconnected { background-color: #e74c3c; } /* Красный */

.live-console {
    /* ИСПРАВЛЕНИЕ 3: Убираем фиксированную высоту, чтобы flex-grow работал */
    /* height: 700px; */ 
    padding: 20px;
    flex-grow: 1; /* Этот параметр теперь будет растягивать блок на всю доступную высоту */
    overflow-y: auto; 
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.6;
}

.log-entry {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #34495e;
}
.log-entry:last-child {
    border-bottom: none;
}

.log-meta {
    color: #95a5a6; /* Серый */
    margin-right: 15px;
}
.log-device {
    color: #3498db; /* Синий */
    font-weight: bold;
}
.log-action-download { color: #f1c40f; } /* Желтый */
.log-action-visit { color: #2ecc71; } /* Зеленый */
.log-action-check { color: #e74c3c; font-weight: bold; } /* Красный */
.log-action-alert { background-color: #e74c3c; color: #fff; padding: 2px 5px; border-radius: 3px; }

/* Навигация админки */
.admin-navbar {
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    display: flex;
    gap: 20px;
}
.admin-nav-link {
    text-decoration: none;
    color: #34495e;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
}
.admin-nav-link:hover {
    background-color: #f0f0f0;
}
/* Активная ссылка будет подсвечиваться JS'ом */
.admin-nav-link.active {
    background-color: #2c3e50;
    color: #ffffff;
}

/* Стили для консоли */
.live-console-container {
    background-color: #2b3e50;
    border-radius: 12px; /* Убираем 0 */
    /* ... остальные стили без изменений ... */
}
.console-header .header-title {
    color: #fff;
    font-weight: bold;
}
.console-filters {
    color: #bdc3c7;
}
.console-filters button {
    background: #34495e;
    color: #ecf0f1;
    border: 1px solid #4a627a;
    border-radius: 5px;
    padding: 4px 8px;
    margin-left: 5px;
    cursor: pointer;
}
.console-filters button.active {
    background: #3498db;
    border-color: #3498db;
}

.admin__status {
    color: chartreuse !important;
}

/* НОВЫЕ СТИЛИ ДЛЯ СОРТИРОВКИ */
.sortable-header {
    cursor: pointer;
    user-select: none; /* Чтобы текст не выделялся при клике */
    position: relative;
    padding-right: 25px !important; /* Добавляем место для стрелки */
}

.sortable-header:hover {
    background-color: #f0f0f0;
}

.sortable-header .sort-indicator {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #888;
}

.sortable-header.sorted-asc .sort-indicator::after {
    content: '▲';
}

.sortable-header.sorted-desc .sort-indicator::after {
    content: '▼';
}

/* Стили для пагинации */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    gap: 20px;
}

.pagination-controls .btn[disabled] {
    background-color: #bdc3c7;
    cursor: not-allowed;
    box-shadow: none;
}

#page-info {
    font-weight: 600;
    color: #34495e;
}

/* --- ДОБАВЛЕНИЯ ДЛЯ РАБОТЫ НОВОГО ФУНКЦИОНАЛА --- */

/* Для иконки истории в devices.html */
.action-btn.history-btn:hover {
    background-color: #f39c12; /* Оранжевый при наведении */
}

/* Список истории в модальном окне */
.modal-body ul.history-list {
    list-style: none;
    padding: 0;
}

.modal-body ul.history-list li {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 15px;
    align-items: center;
    background-color: #f9f9f9;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.modal-body ul.history-list li:hover {
    background-color: #e9ecef;
}

.modal-body ul.history-list li > span:last-child {
    color: #3498db;
    font-weight: 600;
}

/* --- НОВЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ ЛОГОВ (admin-logs.html) --- */

.logs-container {
    background-color: #2c3e50; /* Темно-синий фон */
    color: #ecf0f1; /* Светлый текст */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
}

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

.logs-table thead th {
    background-color: #34495e; /* Фон заголовков чуть светлее */
    color: #ffffff;
    font-weight: bold;
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid #4a627a;
}

.logs-table tbody td {
    padding: 15px;
    border-bottom: 1px solid #34495e; /* Разделитель строк */
    vertical-align: top; /* Выравнивание по верху */
}

.logs-table tbody tr:last-child td {
    border-bottom: none;
}

.logs-table .log-time {
    color: #95a5a6; /* Серый для времени */
    white-space: nowrap;
}

.logs-table .log-actor .nickname {
    color: #3498db; /* Синий для ника */
    font-weight: bold;
    display: block; /* Ник на новой строке */
}

.logs-table .log-actor .email {
    color: #7f8c8d; /* Тусклый серый для email */
    font-size: 12px;
}

.logs-table .log-action-tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
}

/* Цвета для разных действий */
.log-action-tag.verdict-change { background-color: #f39c12; } /* Оранжевый */
.log-action-tag.moderator-block { background-color: #e74c3c; } /* Красный */
.log-action-tag.moderator-delete { background-color: #c0392b; } /* Темно-красный */
.log-action-tag.moderator-unblock { background-color: #2ecc71; } /* Зеленый */
.log-action-tag.invite-generate { background-color: #1abc9c; } /* Бирюзовый */
.log-action-tag.generic-action { background-color: #95a5a6; } /* Серый */


.logs-table .log-details {
    color: #bdc3c7; /* Светло-серый для деталей */
    word-break: break-word; /* Перенос длинных строк */
}

.btn.btn-secondary {
    background-color: #34495e; /* Ваш темно-синий цвет */
    color: #ffffff;
}

/* Добавляем эффект при наведении для красоты */
.btn.btn-secondary:hover {
    background-color: #2c3e50; /* Делаем цвет чуть темнее */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.verdict-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.verdict-btn {
    border: none;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
}

.verdict-btn:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
    opacity: 0.7;
}

.verdict-btn.mark-cheater {
    background-color: #e74c3c; /* Красный */
}
.verdict-btn.mark-cheater:hover:not(:disabled) {
    background-color: #c0392b;
}

.verdict-btn.mark-clean {
    background-color: #27ae60; /* Зеленый */
}
.verdict-btn.mark-clean:hover:not(:disabled) {
    background-color: #229954;
}

.admin-profile-trigger {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 5px;
    border-radius: 30px;
    transition: background-color 0.2s;
}
.admin-profile-trigger:hover {
    background-color: #f0f0f0;
}
.admin-profile-trigger .nickname {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}
.admin-profile-trigger .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

/* --- Стили для модального окна профиля --- */
.profile-panel-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    display: none; /* Скрыто по умолчанию */
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.profile-panel {
    background-color: #ffffff;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}
.profile-panel-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile-panel-header h2 {
    margin: 0;
    font-size: 24px;
    color: #2c3e50;
}
.profile-panel-body {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
}
.profile-panel .form-group { margin-bottom: 25px; }
.profile-panel label { font-weight: 600; color: #555; display: block; margin-bottom: 8px; }
.profile-panel input[type="text"] { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 8px; font-size: 16px; }
.profile-panel .btn { width: 100%; padding: 12px; font-size: 16px; }
.profile-panel #profile-status-message { font-weight: bold; margin-top: 15px; min-height: 20px; }

/* Стили для аватара */
.avatar-editor { display: flex; align-items: center; gap: 20px; }
.avatar-editor .preview {
    width: 90px; height: 90px; border-radius: 50%;
    background-color: #f0f0f0; background-size: cover;
    background-position: center; border: 3px solid #ddd;
    flex-shrink: 0;
}
#avatar-file-input { display: none; }
.avatar-editor-label {
    background-color: #f0f0f0; border: 1px solid #ccc;
    padding: 8px 12px; border-radius: 8px; cursor: pointer;
    font-weight: 500; transition: background-color 0.2s;
}
.avatar-editor-label:hover { background-color: #e0e0e0; }

/* Стили для кнопки выхода внутри панели */
.profile-panel-footer {
    padding: 20px 30px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 15px 15px;
}
.btn-logout-panel {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #e74c3c;
}
.btn-logout-panel:hover { background-color: #c0392b; }