35 lines
644 B
Plaintext
35 lines
644 B
Plaintext
.modal-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
display: none; /* Controlled by inline style in Razor */
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.modal-box {
|
|
background: white;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
min-width: 300px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.modal-buttons {
|
|
margin-top: 15px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
}
|
|
|
|
.modal-box input {
|
|
width: 100%;
|
|
padding: 6px;
|
|
margin-top: 10px;
|
|
box-sizing: border-box;
|
|
}
|