/* Модальное окно */
.fleekcode-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Контент модального окна */
.fleekcode-modal-content {
    position: relative;
    background-color: #ffffff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 50%;
    max-width: 600px;
    min-width: 320px;
}

/* Кнопка закрытия */
.fleekcode-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.fleekcode-modal-close:hover {
    color: #555;
}

/* Заголовок */
.fleekcode-modal-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #23282d;
    font-size: 18px;
    font-weight: 600;
}

/* Список причин */
.fleekcode-deactivation-reasons {
    margin-bottom: 20px;
}

.fleekcode-deactivation-reason {
    margin-bottom: 10px;
}

.fleekcode-deactivation-reason label {
    display: inline-block;
    margin-left: 8px;
    font-size: 14px;
}

/* Другая причина - текстовое поле */
#fleekcode-deactivation-reason-other-text {
    display: none;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 8px;
}

/* Кнопки в нижней части */
.fleekcode-modal-footer {
    margin-top: 20px;
    text-align: right;
}

#fleekcode-deactivation-submit {
    margin-right: 10px;
} 