:root {
    --main-color: #028410;
    --secondary-color: #fbda04;
  }
.swal-custom-popup {
    border-radius: 10px;
}

.swal-custom-title {
    color: var(--main-color);
    font-size: 1.5rem;
}

.swal-custom-confirm-button {
    background-color: var(--main-color);
    color:white;
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
}

.swal-custom-confirm-button:hover {
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
}