/*............. PAGE DASHBOARD .............*/

.vr_line {
    border: none;
    border-left: 1px solid hsla(200, 10%, 50%, 100);
    height: auto;
    width: 1px;
}

/*............. PAGE production .............*/
.td_link {
  color: darkblue !important;
  cursor:pointer;
  text-decoration-line: underline;
}


/*............. PAGE CREATE ORDER .............*/

shipping_description {
    color: grey;
}

/*............. CUSTOM TOOLTIP .............*/

.toolti {
    position: relative;
    display: inline-block;
  }
  
  /* Tooltip text */
  .toolti .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 6px;
    font-size: 14px;
  
    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
  
    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  /* Tooltip arrow */
  .toolti .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .toolti:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }


  .order-history-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.order-history-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}



.order-history-list li:last-child::before {
    background-color: transparent;
}

.vertical-line{
  border-left: 2px solid #ccc;
  display: inline-block;
  height: 50px;
  margin: 0 20px;
}

.customer-details .card-body {
  font-size: 1rem;
}

.customer-details .card-header {
  background-color: #f8f9fa;
}

.customer-details .card-header h5 {
  margin: 0;
}

.customer-details .address {
  margin-top: 1rem;
}

.customer-details .address h6 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.back-button {
  margin-top: 1rem;
}