.dialog-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(23, 36, 58, 0.7);
    backdrop-filter: blur(2px);
    z-index: 1000;
}

.confirmation-dialog {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;          /* или %, если нужно адаптивнее */
    max-width: 90%;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Roboto', Arial, sans-serif;
    color: #2b383f;
    z-index: 1001;
    overflow: hidden;
}

.confirmation-dialog__header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e6ecf1;
    font-size: 16px;
    font-weight: 500;
}

.confirmation-dialog__header .header-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    flex-shrink: 0;
}

.confirmation-dialog__body {
    padding: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #4b5c6b;
}

.confirmation-dialog__footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 16px;
    background: #f9fafb;
}

.tv-btn {
    min-width: 68px;
    height: 32px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s;
}

.tv-btn–primary {
    background: #33a4ff;
    color: #fff;
    border: none;
}
.tv-btn–primary:hover {
    background: #1f8ce6;
}

.tv-btn–secondary {
    background: transparent;
    color: #33a4ff;
    border: 1px solid #33a4ff;
}

.tv-btn–secondary:hover {
    background: rgba(51, 164, 255, 0.1);
}

