.custom-confirm-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.custom-confirm-text {
    white-space: pre-wrap;
}

.custom-confirm-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    max-width: 90%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
    font-size: 16px;
    line-height: 24px;
    font-family: Poppins, sans-serif;
}

.custom-confirm-buttons {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.custom-confirm-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    width: 100px;
    height: 40px;
}

.custom-confirm-buttons #custom-confirm-buttons__no {
    border: 2px solid var(--brand-primary);
}

.desktopOrange {
    background-color: var(--brand-primary);
    color: var(--text-invert);
}