.check-hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.07);
}

.check-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.check-hero p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.generator-panel {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.07);
    text-align: center;
}

.generator-panel p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
}

.generator-panel .btn {
    padding: 15px 40px;
    font-size: 18px;
}

.session-data {
    margin-top: 40px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    text-align: left;
    display: none; /* Скрыто по умолчанию */
}

.session-data h3 {
    font-size: 22px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 25px;
}

.data-item {
    margin-bottom: 20px;
}

.data-item strong {
    display: block;
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.data-box {
    background-color: #e0e0e0;
    color: #2c3e50;
    padding: 12px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.3rem;
    user-select: all; 
    text-align: center;
}

.results-link-container {
    text-align: center;
    margin-top: 30px;
}

.results-link-container a {
    color: #4caf50;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s;
}

.results-link-container a:hover {
    border-bottom-color: #4caf50;
}

/* Добавьте это в конец section.css */

.results-panel {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.07);
}

.verdict-section {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.verdict-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.verdict-risk {
    font-size: 16px;
    color: #555;
}

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

.results-table th, 
.results-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.results-table thead th {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    background-color: #f9f9f9;
}

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

.risk-cell {
    font-weight: 700;
    text-align: center;
    width: 80px;
}

.toggle-all-btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    background-color: transparent;
    color: #4caf50;
    border: 2px solid #4caf50;
    font-weight: bold;
    transition: all 0.3s ease;
}

.toggle-all-btn:hover {
    background-color: #4caf50;
    color: #ffffff;
}

.hidden-row {
    display: none;
}

/* Стили для модального окна */
.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: 800px;
    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 ul {
    list-style-type: none;
    padding: 0;
}

.modal-body li {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 8px;
    font-family: 'Courier New', Courier, monospace;
    word-break: break-all;
}

.moderator-code-item {
    background-color: #e8f5e9; /* Светло-зеленый фон */
    border: 2px solid #4CAF50;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.moderator-code-item strong {
    color: #2e7d32;
    font-size: 18px;
    text-align: center;
}
.claim-code-box {
    background-color: #ffffff;
    color: #e74c3c; /* Красный цвет для привлечения внимания */
    font-size: 2rem; /* Крупный шрифт */
    letter-spacing: 5px; /* Разрядка между символами */
}

.project-select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 10px;
}

.modal-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(44, 62, 80, 0.85);
    display: flex; justify-content: center; align-items: center; z-index: 1000;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-backdrop.visible { opacity: 1; visibility: visible; }
.modal-content {
    background-color: #ffffff; color: #333;
    padding: 30px 35px; border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 90%; max-width: 450px;
    transform: scale(0.95); transition: transform 0.3s ease;
}
.modal-backdrop.visible .modal-content { transform: scale(1); }
.modal-header {
    text-align: center; border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px; margin-bottom: 20px;
}
.modal-header h3 { margin: 0; font-size: 24px; font-weight: 600; color: #2c3e50; }
.modal-body p { text-align: center; color: #7f8c8d; margin-bottom: 20px; }

/* --- ИЗМЕНЕНИЕ 1: Новый, красивый стиль для выпадающего списка --- */
.project-select {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    border: 1px solid #dfe4ea;
    border-radius: 8px;
    background-color: #ffffff;
    color: #34495e;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%237f8c8d%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.project-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

/* --- ИЗМЕНЕНИЕ 2: Новый, красивый стиль для кнопки --- */
#confirm-project-btn {
    width: 100%;
    margin-top: 20px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}
#confirm-project-btn:hover {
    background-color: #229954;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}
#confirm-project-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(39, 174, 96, 0.2);
}
#confirm-project-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    box-shadow: none;
}

/* Стили для раскрывающегося списка путей (УЛУЧШЕННАЯ ВЕРСИЯ) */
.location-cell-container {
    position: relative;
    text-align: left; /* Выравниваем содержимое по левому краю */
}

.path-toggle {
    cursor: pointer; /* Делаем курсор-руку при наведении */
    color: #3498db;
    font-weight: 500;
    display: inline-flex; /* Используем flex для лучшего выравнивания */
    align-items: center;
    border-bottom: 1px dashed #3498db;
    padding: 2px 0;
    transition: color 0.2s;
}

.path-toggle:hover {
    color: #2980b9;
}

.path-toggle i {
    margin-left: 8px; /* Отступ для иконки */
}

.path-list {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    /* УБИРАЕМ max-height и overflow, чтобы список раскрывался полностью */
}

.path-list li {
    padding: 8px 12px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    color: #495057;
    word-break: break-all;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.path-list li:last-child {
    border-bottom: none; /* Убираем границу у последнего элемента */
}

.path-list li:hover {
    background-color: #e9ecef; /* Подсветка при наведении на путь */
}