.popup-buttons button:hover {
background: gray;
}
button.popup-not_approve {
background: red;
}
.popup-buttons button {
border: 0;
padding: 10px 20px;
margin-left: 10px;
border-radius: 5px;
transition: .4s;
color: white;
font-size: 20px;
cursor: pointer;
}
button.popup-approve {
background: #fc8a35;
}
.popup-buttons {
text-align: right;
}
.popup-content {
padding: 50px 20px;
}
.popup-close {
text-align: right;
position: absolute;
z-index: 1;
cursor: pointer;
right: 15px;
top: 15px;
font-size: 30px;
}
.popup-modal {
max-width: 100%;
width: 600px;
padding: 30px;
border-radius: 20px;
background: white;
position: relative;
}
.popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99;
background: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
@media(max-width:600px) {
.popup-buttons {
display: flex;
flex-direction: column;
gap: 20px;
}
}