.notyf-confirm-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    background: rgb(180, 180, 180);
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--primaryColor);
  width: 100%;
}
.notyf__toast--info {
    background-color: black !important; /* blue */
    color: white;
}
  
.notyf-confirm-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.notyf-confirm-btn {
    background: #16a34a;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.notyf-cancel-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
}