.btn-edit,
.btn-delete {
    width: 45%;
    border: none;
    color: white;
    font-size: 20px;
    padding: 10px 0;
    margin-top: 20px;
    border-radius: var(--radius1);
    cursor: pointer;
}

.btn-edit {
    background-color: var(--primaryColor);
}

.btn-delete {
    background-color: rgb(185, 22, 22);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999999999;
}

.modal-content {
    background: #fff;
    padding: 20px;
    padding-top: 50px !important;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    height: 75%;
    overflow-y: scroll;

}

.modal .close {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    padding: 1px 10px;
    color: var(--white);
    border-radius: 5px;
    background-color: rgb(185, 22, 22);
}
.save-chenge{
    width: 45%;
    border: none;
    color: white;
    font-size: 18px;
    padding: 10px 0;
    margin-top: 20px;
    border-radius: var(--radius1);
    background-color: var(--primaryColor);

}