.dgf-box {
    background: linear-gradient(135deg, #fff8ec 0%, #f5faef 100%);
    border-radius: 20px;
    padding: 24px 18px;
    margin: 28px 0;
    text-align: center;
    box-shadow: 0 8px 24px rgba(20, 50, 35, 0.08);
}

.dgf-title {
    margin: 0 0 18px;
    font-size: 1.35rem;
    line-height: 1.25;
    color: #12372f;
}

.dgf-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.dgf-button {
    border: 0;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.2;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

.dgf-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(20, 50, 35, 0.16);
}

.dgf-button:disabled {
    cursor: not-allowed;
    opacity: 0.75;
    transform: none;
    box-shadow: none;
}

.dgf-button-yes {
    background: #4f8f2f;
    color: #ffffff;
}

.dgf-button-no {
    background: #d85f43;
    color: #ffffff;
}

.dgf-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.dgf-message {
    margin: 14px 0 0;
    min-height: 1.3em;
    font-weight: 600;
    color: #4f8f2f;
}

.dgf-results {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 18px;
    font-weight: 700;
    color: #12372f;
}

@media (max-width: 520px) {
    .dgf-box {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .dgf-title {
        font-size: 1.18rem;
        margin-bottom: 16px;
    }

    .dgf-buttons {
        flex-direction: row;
        gap: 14px;
        justify-content: center;
        align-items: center;
    }

    .dgf-button {
        width: 74px;
        height: 58px;
        min-height: 58px;
        padding: 0;
        border-radius: 16px;
        flex: 0 0 74px;
    }

    .dgf-button-text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .dgf-icon {
        font-size: 1.8rem;
    }
}
