body {
    font-family: Arial, sans-serif;
    text-align: center;
}

table {
    width: 60%;
    margin: 50px auto;
    border-collapse: collapse;
}

th, td {
    border: 1px solid black;
    padding: 10px 20px;
    vertical-align: top;
}

th {
    background-color: #f0f0f0;
}

.status {
    padding: 10px;
    color: white;
    border-radius: 5px;
    margin-bottom: 10px;
}

.status-time {
    font-size: 0.7em;
    display: block; /* Pour afficher le compteur sur une nouvelle ligne */
}

.history {
    font-size: 0.8em;
}


.pause {
    color: black;
}

#settingsModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
}

#settingsModal h2 {
    margin-top: 15%;
}

#settingsEntries div {
    margin: 10px 0;
}

.history .occupied {
    background-color: white;
    color: red;
}

.history .free {
    background-color: white;
    color: green;
}

.occupied {
    color: red;
    background-color: transparent;
}

.free {
    color: green;
    background-color: transparent;
}

.status.occupied {
    background-color: red;
    color: white;
}

.status.free {
    background-color: green;
    color: white;
}


