/* ===== Глобальная справочная модалка <profile-kind-info-modal> =====
 * Открывается с кнопки «?» рядом с селектом роли в профиле ЛК.
 * Объясняет, какие активности видны под каждой ролью (taught/student/other).
 * Базовая стилистика — общий класс .auth-modal-backdrop / .auth-modal.
 */

.profile-kind-info-backdrop {
    z-index: 1000; /* выше обычных модалок (100), но ниже глобального confirm (2000) */
}

.profile-kind-info {
    width: min(100%, 640px) !important;
    text-align: left;
    padding: 32px 32px 28px !important;
}

.profile-kind-info__title {
    margin-bottom: 6px !important;
    text-align: left;
}

.profile-kind-info__intro {
    margin: 0 0 16px;
    color: #6b6b6b;
    font-size: 14px;
    line-height: 1.55;
}

.profile-kind-info__table-wrap {
    overflow-x: auto;
    margin: 0 0 18px;
}

.profile-kind-info__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.profile-kind-info__table th,
.profile-kind-info__table td {
    padding: 10px 12px;
    border-bottom: 1px solid #ecebe7;
    text-align: center;
    vertical-align: middle;
}

.profile-kind-info__table thead th {
    font-weight: 600;
    color: #4a4a4a;
    background: rgba(134, 158, 192, 0.08);
}

.profile-kind-info__table tbody th {
    text-align: left;
    font-weight: 600;
    color: #2c2c2c;
    background: #fafaf7;
    white-space: nowrap;
}

.profile-kind-info__cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.profile-kind-info__cell--ok {
    background: rgba(72, 158, 96, 0.14);
    color: #3f8a55;
}

.profile-kind-info__cell--no {
    background: rgba(199, 84, 84, 0.14);
    color: #c75454;
}

.profile-kind-info__list {
    margin: 0 0 20px;
    padding: 0 0 0 18px;
    color: #4a4a4a;
    font-size: 13.5px;
    line-height: 1.55;
}

.profile-kind-info__list li + li {
    margin-top: 8px;
}

.profile-kind-info__actions {
    flex-direction: row !important;
    justify-content: flex-end;
}

@media (max-width: 540px) {
    .profile-kind-info {
        padding: 24px 20px 20px !important;
    }
    .profile-kind-info__table th,
    .profile-kind-info__table td {
        padding: 8px 6px;
        font-size: 12px;
    }
}
