42 lines
620 B
CSS
42 lines
620 B
CSS
.tableContainer {
|
|
overflow-y: auto;
|
|
overflow-x: auto;
|
|
border-radius: 4px;
|
|
max-height: 430px;
|
|
scrollbar-color: rgb(1, 92, 184) rgba(0, 0, 0, 0);
|
|
width: 100%;
|
|
}
|
|
|
|
.disponible {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: green;
|
|
color: green;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.ocupado {
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.actions {
|
|
text-align: center;
|
|
}
|
|
|
|
.resetButton {
|
|
padding: 8px 16px;
|
|
background-color: #ff4d4d;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.resetButton:hover {
|
|
background-color: #cc0000;
|
|
}
|