72 lines
1.1 KiB
CSS
72 lines
1.1 KiB
CSS
.tableContainer {
|
|
margin-top: 10px;
|
|
overflow-y: auto;
|
|
overflow-x: auto;
|
|
border-radius: 4px;
|
|
border: 1px solid #cfcfcf;
|
|
max-height: 430px;
|
|
scrollbar-color: rgb(1, 92, 184) rgba(0, 0, 0, 0);
|
|
background-color: #f9f9f9;
|
|
width: 65%;
|
|
}
|
|
|
|
.machineTable {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
table-layout: auto;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.machineTable th,
|
|
.machineTable td {
|
|
padding: 10px;
|
|
text-align: center;
|
|
border-bottom: 1px solid #cfcfcf;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.machineTable th {
|
|
position: sticky;
|
|
top: 0px;
|
|
background-color: rgb(1, 92, 184);
|
|
color: white;
|
|
}
|
|
|
|
.machineTable tr {
|
|
min-width: 400px;
|
|
}
|
|
|
|
.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;
|
|
}
|