table {
    width: 100%;
    border-collapse: separate;
    border: 1px solid #fff;
    border-radius: 5px;    
}

th {
    font-weight: bold;
    cursor: context-menu;
    position: relative;
    background-color: rgb(0,0,0);
    color:rgb(255,255,255);
}

tbody{    
    color:rgb(0,0,0);
}



tbody tr:nth-child(odd) {
    background-color: rgba(250,250,250,0.95);
}

tbody tr:nth-child(even) {
    background-color: rgba(230,230,230,0.95);
}

tbody tr:hover {
    background-color: #d1d1d1;
}

td {
    padding:3px;
}

button {
    background-color: rgb(0,0,0);
    color: rgb(255,255,255);
}

input, select, button {
    padding: 4px;
    border-radius: 10px;
    margin-left: 10px;
    border: 1px solid #d1d1d1;
}


input::placeholder {
    color: lightblue; /* Change the color to blue */
    font-style: italic; /* Make the text italic */
}

/* Classes */

.numeric{
    text-align: right;
}

.action{
    color: rgb(255,102,0);
    cursor: pointer;
}

.materialbestno{
    background-color: rgb(0,51,153);
    color: rgb(255,255,255);

}

.btnAddOrder{
    height: 80px;
    width: 85px;
    border-radius: 5px;
    margin-bottom:6px;
    margin-top:4px;
    margin-left:6px;
    margin-right:6px;
}

.order{
    text-align: center;
    height:30px;
    width:100px;
    background-color: rgb(220,220,220);
    border-radius: 5px;
    border: 1px solid rgb(180, 180, 180);
    margin-bottom:8px;
    margin-top:4px;
    margin-left:8px;
    margin-right:8px;
    display: inline-block;

}

.deliverynote{
    text-align: center;
    height:30px;
    width:140px;
    background-color: rgb(255,255,255);
    border-radius: 5px;
    border: 1px solid rgb(0, 0, 0);
    margin-bottom:8px;
    margin-top:4px;
    margin-left:8px;
    margin-right:8px;
    display: inline-block;

}

.info{
    cursor: help;
}

.inactive{

    background-color: lightgrey;
    color: darkgrey;
}



#banner {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: rgba(255,255,255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: top 1500ms ease-in-out, opacity 500ms ease-in-out;
}

#banner.visible {
  top: 40%;
  transform: translateY(-50%);
  opacity: 1;
}

#banner.hidden {
  top: -100px;
  opacity: 0;
  transform: none;
}


#loadingGif {
  height: 65px;
}



.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5); /* Black with opacity */
  }

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    min-width: 200px;
    max-width: 350px;
    text-align: center;
  }
.modal-content p{
    text-align: left;
    font-weight: bold;
}
.modal-content ul{
    text-align: left;
    font-weight: normal;
}
.modal-content li{
    text-align: left;
    font-weight: normal;
}



.glass-card {
  background: rgba(255, 255, 255, 0.589);
  border-radius: 15px;
  padding: 1rem;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
}