@font-face {
    font-family: "remixicon";
    src: url('remixicon.eot?t=1590207869815'); /* IE9*/
    src: url('remixicon.eot?t=1590207869815#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url("remixicon.woff2?t=1590207869815") format("woff2"),
    url("remixicon.woff?t=1590207869815") format("woff"),
    url('remixicon.ttf?t=1590207869815') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
    url('remixicon.svg?t=1590207869815#remixicon') format('svg'); /* iOS 4.1- */
    font-display: swap;
    }

    [class^="ri-"], [class*=" ri-"] {
    font-family: 'remixicon' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
    .ri-check-line:before { content: "\eb7b"; }

  .dropdown-img {
  width: 12px; /* Adjust the size as needed */
  height: auto; /* Maintain aspect ratio */
  vertical-align: middle; /* Align with text */
  margin-left: 5px; /* Add some spacing */
  }
  .dropdown image {
  width: 12px; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
  vertical-align: middle; /* Align with text */
  margin-left: 5px; /* Add spacing */
  transform: rotate(180deg); /* Rotate the icon */
  }
  .blue.checkmark {
    width: 20px; /* Increase size */
    height: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align with text */
    margin-right: 5px; /* Spacing between icon and text */
  }
  span img {
    width: 160px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align with text */
    margin-right: 5px; /* Add spacing if needed */        
}
.lock{
  width: 14px; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
  vertical-align: text-top; /* Align with text */
  margin-left: 4px; /* Add spacing */
}
.chevron-right{
  width: 5px; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
  vertical-align: text-top; /* Align with text */
  margin-right: 4px; /* Add spacing */
}
.bottom-icons{
  width: 20px; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
  vertical-align: text-top; /* Align with text */

}
.logoed {
  position: absolute;
  top: -20px;   /* Move logo up by reducing the value */
  left: 50px;  /* Adjust to position logo horizontally */
  z-index: 100; /* Ensure it's above other elements */
}

.logoed img {
  width: 250px;  /* Adjust the size as needed */
  height: auto;  /* Keep aspect ratio */
}

.header-logo{
    width:20px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#navbar {
  display: flex;
  justify-content: flex-end;  /* Aligns the content to the right */
  width: 100%;
}
.chevron-down{
  width: 12px; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
  vertical-align: middle; /* Align with text */
  margin-left: -20px; /* Add spacing */
  margin-right: 10px;
}
.little-face-icon{
  width: 20px; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
}
.section-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  text-align: left;
}
table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
th, td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}
th {
  background-color: #f8f9fa;
  font-weight: bold;
}

.status-container {
  text-align: center;
  margin-bottom: 30px;
}
.status-bar {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  position: relative;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.status-text {
  position: absolute;
  font-size: 18px;
  font-weight: bold;
}
.status-pending { background-color: #ff9800; }
.status-in-transit { background-color: #007bff; }
.status-picked-up { background-color: #ffc107; }
.status-on-hold { background-color: #999; }
.status-delivered { background-color: #28a745; }
.status-cancelled { background-color: #dc3545; }

.sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.sidebar li {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #ddd;
}
.sidebar .port-name {
  flex: 1;
  font-size: 16px;
  color: #333;
}
.sidebar .checkbox {
  margin-right: 10px;
}
.sidebar .checked {
  color: #28a745; /* Green for passed ports */
}
.sidebar .unchecked {
  color: #ffc107; /* Yellow for upcoming ports */
}
.sidebar .current-port {
  color: #007bff; /* Blue for the current port */
  font-weight: bold;
}
h2 {
  color: #007bff;
  margin-bottom: 20px;
}
     body {
      font-family: 'Georgia', 'Times New Roman', serif;
      background-color: #f4f7fc;
      /*margin: 20px;*/
      padding-top: 20px;
      justify-content: space-between;
    } 
    
#qrcode {
  margin: 20px 0;
  display: block;
  text-align: center;
}
/* Wrapper for the main content and sidebar */
.main-container {
  display: flex;
  justify-content: space-between; /* Space out the content */
  align-items: flex-start; /* Align items to the top */
  gap: 20px; /* Space between the main container and sidebar */
  padding: 20px;
}

/* Main tracking container styles */
.track-container {
  flex: 1; /* Take up the remaining space */
  width: 70%;
  padding: 30px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Sidebar styles */
.sidebar {
  flex-basis: 30%; /* Sidebar takes up 30% of the space */
  overflow-y: auto; /* Make sure the sidebar scrolls if the content is long */
  width: 25%;
  padding: 20px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  margin-left: 20px;
  overflow-y: auto;
  max-height: 80vh;
}

/* Styling for individual port list items (if needed) */
#tracking-list li {
  margin-bottom: 10px;
}

/* Styling for port names */
.port-name {
  margin-left: 10px;
}

.additional-info {
  margin-top: 20px;
}

.additional-info h5 {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.additional-info p {
  font-size: 1em;
  color: #333;
}

.port-info {
  margin-top: 20px;
  padding: 15px;
  background-color: #f1f1f1;
  border-radius: 5px;
}

.info-item {
  margin-bottom: 10px;
  font-size: 1em;
  color: #555;
}

.info-item strong {
  color: #333;
}

.info-item span {
  color: #007bff;
}


/*.tracking-timeline {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 20px 0;*/
/*    position: relative;*/
/*}*/

/*.tracking-step {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    margin-bottom: 20px;*/
/*    position: relative;*/
/*}*/

/*.tracking-marker {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    border-radius: 50%;*/
/*    margin-right: 15px;*/
/*    position: relative;*/
/*}*/

/*.tracking-marker.completed {*/
/*    background-color: green;*/
/*}*/

/*.tracking-marker.current {*/
/*    background-color: orange;*/
/*    animation: pulse 1s infinite;*/
/*}*/

/*.tracking-marker.upcoming {*/
/*    background-color: gray;*/
/*}*/

/*.tracking-details {*/
/*    background: #f8f9fa;*/
/*    padding: 10px;*/
/*    border-radius: 8px;*/
/*    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);*/
/*}*/

.tracking-timeline {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    position: relative;
}

.tracking-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.tracking-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
}

.tracking-marker.completed {
    background-color: green;
}

.tracking-marker.current {
    background-color: orange;
    animation: pulse 1s infinite;
}

.tracking-marker.upcoming {
    background-color: gray;
}

.tracking-details {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}


@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}



.dropdown-img {
    width: 10px;
}