* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(33, 31, 31);
    font-family: Arial, sans-serif;
    height: 100vh;
}

.body {
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ticket {
  flex: 1 1 250px;       /* groeit tot 250px, maar kan kleiner worden */
  max-width: 250px;
}

.nav {
    position: fixed;
    margin-top: 10px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #3c794b;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.nav-item {
    display: contents;
}

.nav-item > div {
    font-weight: 400;
    font-size: 40px;
    padding: 15px 12px;
    text-align: left;
    border-right: 1px solid #ddd;
}


.tickets-table {
    width: 100%;
    margin-top: 115px;
    background-color: grey;
    color: white;
    box-shadow: none;
    border-collapse: collapse;
    table-layout: fixed;
    border-spacing: 0;
    overflow: auto;
}

.tickets-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 40px;
    word-wrap: break-word;
    width: calc(100% / 7);
}

tr.to-do {
  background-color: red;
}

#timer-bar-container {
  width: 100%;
  height: 10px;
  background-color: #eee;
  border-radius: 5px;
  overflow: hidden;
}

#timer-bar {
  height: 100%;
  width: 0%;
  background-color: blue;
}