.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;
    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: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dialog-close-btn img {
    height: 20px;
    width: 20px;
}

.dialog-close-btn:hover {
    background-color: #F4F6F7;
}

.dialog-delete {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    width: 100%;
}

.dialog-delete-btn-row {
    display: flex;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
    justify-content: stretch;
}


.error {
    border-radius: 200px;
    height: 150px;
    width: 150px;
    background: #c91010;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-check {
    color: white;
    font-size: 5rem;
    font-weight: 700;
}

.error-check p {
    font-size: 5rem;
}