/* Блюр и блокировка кнопки, пока не нажат чекбокс */
.sender-btn.btn-subscribe.btn-blurred,
.sender-btn.btn-subscribe[disabled] {
    filter: blur(2px);
    opacity: 0.6;
    cursor: not-allowed !important;
    pointer-events: none;
}

.sender-btn.btn-subscribe:not([disabled]):not(.btn-blurred) {
    filter: none;
    opacity: 1;
    cursor: pointer;
}

/* Стили для блока согласия */
.subs-consent {
    margin-top: 10px;
    text-align: left;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.4;
    color: #666;
}

.consent-checkbox {
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.consent-text {
    display: inline;
}

.consent-text a.red-link {
    color: #df0101;
    text-decoration: underline;
}

.consent-text a.red-link:hover {
    text-decoration: none;
}