/**
 * Стили для выбора канала уведомлений
 */

.th-notification-channel-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.th-notification-channel-select {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.th-notification-channel-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
}

.th-notification-channel-option:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.th-notification-channel-option._selected {
    border-color: #7b2d8e;
    background: rgba(123, 45, 142, 0.2);
}

.th-notification-channel-option input[type="radio"] {
    display: none;
}

.th-notification-channel-icon {
    flex-shrink: 0;
}

.th-notification-channel-icon svg {
    display: block;
}

.th-notification-channel-label {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.th-notification-channel-warning,
.th-notification-channel-info {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.th-notification-channel-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.th-notification-channel-info {
    background: rgba(0, 136, 204, 0.15);
    color: #4fc3f7;
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.th-notification-channel-warning .icon-warning,
.th-notification-channel-info .icon-info {
    font-size: 16px;
    flex-shrink: 0;
}

/* Блок ссылки на Telegram бота после оплаты/бронирования */
.th-telegram-link-block {
    margin: 24px 0;
    padding: 0;
    text-align: center;
}

.th-telegram-link-block p {
    margin: 0 0 16px;
    font-size: 16px;
}

.th-telegram-link-block p:last-child {
    margin-bottom: 0;
}

.th-btn_telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0088cc;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}

.th-btn_telegram:hover {
    background: #006699;
    color: #fff;
}

.th-btn_telegram svg,
.th-btn_telegram img {
    width: 24px;
    height: 24px;
}

.th-telegram-instruction {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Адаптация для светлого фона (страница успеха в модалке) */
.response-successful .th-telegram-link-block p,
.th-response-msg .th-telegram-link-block p {
    color: #333;
}

.response-successful .th-telegram-instruction,
.th-response-msg .th-telegram-instruction {
    color: rgba(0, 0, 0, 0.6);
}

/* Шаг 2.5 */
.th-quest-popup-step-25 {
    /* Наследует стили от других шагов */
}

/* Скрытие элементов */
._hidden {
    display: none !important;
}
