﻿.confirm-dialog {
    max-width: 600px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
    border: 1px solid rgba(0,0,0,0.05);
}

.dialog-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 22px 16px 22px;
}

.premium-icon {
    background: linear-gradient(135deg, #2D5D70, #265DAB);
    color: white;
    border-radius: 50%;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.title-text {
    font-weight: 600;
    font-size: 1.15rem;
    color: #1e293b;
}

.body-text {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.5;
}

.dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    padding: 16px 22px;
    border-top: 1px solid #f1f5f9;
    background-color: #fafafa;
}

.cancel-button,
.confirm-button {
    min-width: 110px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
}

    .confirm-button.premium-button {
        background: linear-gradient(135deg, #2D5D70, #265DAB);
        color: white;
        box-shadow: 0 3px 10px rgba(38, 93, 171, 0.3);
    }

        .confirm-button.premium-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(38, 93, 171, 0.4);
        }

    .cancel-button:hover {
        background-color: #f1f5f9;
    }
