.dialog-overlay {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap:0.5rem;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.dialog {
    background: #fff;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.success-dialog {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 3rem;
    gap: 1rem;
}

.success {
    border-radius: 200px;
    height: 150px;
    width: 150px;
    background: #308307;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-check {
    color: white;
    font-size: 5rem;
    font-weight: 700;
}

.success-dialog-title {
    color: black;
    font-size: 2rem;
    font-weight: 600;
}

.success-dialog-subtitle {
    color: black;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6rem;
    text-align: center;
}


.dialog-close-btn {
    background-color: #FFFFFF;
    cursor: pointer;
    border: 1px solid #FFFFFF;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.dialog-close-btn img {
    height: 20px;
    width: 20px;
}

.dialog-close-btn:hover {
    background-color: #F4F6F7; 
    border-radius: 50%;
}