.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
}

.modal-content ul {
    list-style: none;
    padding: 0;
}

.modal-content li {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-content li label {
    flex: 1;
    text-align: left;
}

.modal-content li input[type="checkbox"] {
    margin-left: 20px;
}

.button-group {
	width: 80%;
    display: flex;
    justify-content: space-between;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cancel {
    background-color: #f44336;
    color: #fff;
}

.save {
    background-color: #2f394e;
    color: #fff;
}
