body {
    font-family: 'Roboto', sans-serif;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 1000;
}

.modal {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ffffff;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1001;
}

.modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.modal-header img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.modal-header h2 {
    font-size: 15px;
    margin: 0;
    color: #000000;
}

.whitez {
    color: #000000;
}

.pzzz {
    color: #000000;
}

.modal p {
    margin: 2px 0;
	font-weight: 400;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
}

.modal-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.modal-button {
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid #047db7;
    margin-left: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
}

.modal-button.add {
    background-color: #00000000;
    color: #000000;
}

.modal-button.add:hover {

}

.modal-button.cancel {
    background-color: #0b57d0;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.modal ul {
    padding-left: 20px;
}

.modal ul li {
    margin-bottom: 5px;
    color: #555;
}
