html, body {
    margin: 0;
    padding: 0;
}
body {
    /* overflow-y: hidden; */
    overflow-x: hidden;
}
#filter-button {
  padding: 8px 15px; /* Adjust padding to your preference */
  margin-left: 10px; /* Space between the input field and the button */
  color: #fff; /* Text color */
  background-color: #e14d20; /* Button background color */
  border: none; /* Remove border */
  border-radius: 15px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s; /* Smooth background color transition */
  font-weight: bold;
}

#filter-button:hover {
  background-color: #E86826; /* Darker background color on hover */
}
.table-scroll {
  max-height: 500px; /* Adjust the height as needed */
  overflow-y: auto;
  margin-bottom: 20px; /* Add some space below the table */
}

/* Ensure the table layout is fixed to prevent column width changes when scrolling */
.driver-event-table {
  table-layout: fixed;
  border-collapse: collapse;
}
.delay-label {
    font-size: 13px;
    display: inline-block; /* Make the label an inline-block element */
    margin-right: 10px; /* Add some space between the label and the following input */
    vertical-align: middle; /* Align the text vertically in the middle */
}
.filter {
  max-width: 350px !important;
}
.delays-input-container {
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Style individual delay inputs */
  .delays-input-container input[type="text"] {
    flex: 1;
    margin: 0 5px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 15px;
    width: 1px;
    height: 30px;
  }
  
  /* Remove side margins from the first and last input */
  .delays-input-container input[type="text"]:first-child {
    margin-left: 0;
  }
  
  .delays-input-container input[type="text"]:last-child {
    margin-right: 0;
  }



.driver-info-container {
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 10px;
    text-align: left;
  }
  
  .driver-info-container p {
    margin: 5px 0;
    color: #333;
    font-size: 14px;
  }
.driver-event-table {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
.driver-event-table td:nth-child(1),
.driver-event-table th:nth-child(1) {
    width: 5%;
    text-align: center;
}
.driver-event-table td:nth-child(2),
.driver-event-table th:nth-child(2),
.driver-event-table td:nth-child(3),
.driver-event-table th:nth-child(3) {
    width: 15%;
    text-align: center;
}
.driver-event-table td:nth-child(4),
.driver-event-table th:nth-child(4) {
    width: 40%;
    text-align: center;
}
.driver-event-table td:nth-child(5),
.driver-event-table th:nth-child(5),
.driver-event-table td:nth-child(6),
.driver-event-table th:nth-child(6),
.driver-event-table td:nth-child(7),
.driver-event-table th:nth-child(7),
.driver-event-table td:nth-child(8),
.driver-event-table th:nth-child(8) {
    width: 20%;
    text-align: center;
}
.body-container {
    width: 100%;
    height: 100%;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    /* border: 1px solid #ccc; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
* {
    font-family: 'Quicksand', sans-serif;
}
.description {
    margin-top: 0px;
}
.driver-event-table {
    margin-top: 0px;
}
.info-container {
    /* border: 1px solid #ccc; */
    border-radius: 15px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    display: inline-block;
    padding: 20px;
    /* background: #fff; */
    max-width: 100%;
}


.login-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    margin: 50px auto;
  }
  
  .input-container {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .input-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-sizing: border-box;
  }
  
  #login-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 15px;
    background-color: #e14d20;
    color: white;
    cursor: pointer;
    font-weight: bold;
  }
  
  #login-button:hover {
    background-color: #E86826;
  }


  
  #logout-button {
    margin-right: 5px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    font-size: 16px;
    color: white;
    background-color: #dc3545;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #logout-button:hover {
    background-color: #bd2130;
  }