.tol {border: none; width:25%;}
.tol div {width:calc(40vw - 20px);}
.tol div label {width:120px; margin-top: 11px;} 
.tol input, .tol textarea, .tol select {
    
    width: calc(100% - 120px);
    /*height: calc(2.25rem + 2px);*/
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color;
    margin-top: 6px;
    resize: none;
}
.tol textarea {vertical-align: top;}

.tol input[type="submit"], .tol input[type="reset"] {
 cursor:pointer;
 width:120px;
 padding: .375rem .75rem;
 font-size: 1rem;
 line-height: 1.5;
 color: white;
 background-color: green;
 margin-top: 15px;
}

.tol input[type="submit"]{
    background-color: green;
}

.tol input[type="reset"]{
    background-color: red;
}

.l250 {width:250px;}

.tabticket {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  height: 50px;
  display: flex;
  align-items: center;
}

.tabticket button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

.tabticket .active, button:hover{
  background-color: lightgrey;
}

.ferme {
    display: none;
}

.ouvert {
    display: block;
}

#search {
  width: 100%; /* Full-width */
  font-size: 16px; /* Increase font-size */
  padding: 12px 20px 12px 40px; /* Add some padding */
  border: 1px solid #ddd; /* Add a grey border */
  margin-bottom: 12px; /* Add some space below the input */
}

#TicketTable .list tr:hover, #clientTable .list tr:hover {
  background-color: #ddd;
}

#clientTable select, input, .adrs{
    
    width: 100%;
    height: calc(2.25rem - 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color;
    resize: none;
}

#TicketTable .list {
    cursor: pointer;
}

#add-btn {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px solid;
}

#add-btn:hover {
  transform: scale(1.3); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  cursor: pointer;
}

.sidebar .nav .nav-item a {
  color: white;
  }
  
.sidebar .nav .nav-item a:hover {
    color: lightgrey;
}

#t-login td{
    padding-top: 10px;
}

.t-login-left {
    padding-right: 30px;
}

.testcolor {
    color: #F6F3EA;
    background : #F6F3EA;
}

.client-grid {
    display: grid;
    width : 100%;
    grid-template-columns: 40% 60%;
    grid-gap: 10px;
}

.pagination {
    background-color: #273746; 
    margin-bottom: 25px; 
    text-align:center;
}

.pagination li {
    text-align:center; 
    padding:5px 15px 5px 15px;
}

.pagination li a {
    color:whitesmoke; 
    text-decoration: none;
}

.pagination li.active {
    background-color: #EAECEE; 
    border-radius: 3px; 
    border:none;
}

.pagination li.active a {
    color:darkred;
}