th,td{font-size:8pt;}

td,th,body{
  font-family:  Roboto, Helvetica, Lato,sans-serif;
}
body{
    background-color: white;
  }

#main {
  display: flex;
  justify-content: space-around;
}

#main div {
  flex-grow: 0;
  min-width: 0;
  padding: 0%;
}

.mtop{margin-top: 70px;
 margin-left:0%;
 margin-right: 0%;}
 /* Reset body styles */

@media (max-width: 768px) {
.mtop {
width: 99vw; /* Use almost full width on smaller screens */
/*height: 99vh; /* Use almost full height on smaller screens */
}
}

/* for confirmation of delete action*/
#confirmModal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#confirmModal.show {
    display: block;
    opacity: 1;
}

.modal-overlay {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-box {
    background: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    width: 320px;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

#confirmModal.show .modal-box {
    transform: scale(1);
}

.modal-box p {
    font-weight: bold;
    margin-bottom: 20px;
}

.modal-buttons button {
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-yes {
    background: #e74c3c;
    color: white;
    margin-right: 10px;
}

.btn-yes:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.btn-no {
    background: #bdc3c7;
    color: #2c3e50;
}

.btn-no:hover {
    background: #95a5a6;
    transform: scale(1.05);
}




