
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
 

 


  :root {
    --primary : #f26522;
    --textcolor : #0f467c;
  }

body {
    background: linear-gradient(90deg, rgba(15,70,124,1) 0%, rgba(242,101,34,1) 61%);
    font-family: "Mulish", serif; 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 18px;
}

.toparea {
    background-color: white;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.title {
    color: #614935;
}

footer {
    margin-top: auto;
}

.card1 {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    border-radius: 15px;
}

.man {
    color: red;
}

.footerlinks {
    list-style: none;
}

.footerlinks li a{
    color: white;
    text-decoration: none;
}

.breadcrumb li a  {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before  {
    color: white;
}

.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    animation-name: dropdown-animate;
    animation-duration: 0.2s;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 15px 30px 0 rgba(82, 63, 105, 0.2);
  }
  
  .dropdown-menu .dropdown-header,
  .dropdown-menu .dropdown-footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 25px;
    color: #212529;
  }
  
  .dropdown-menu .dropdown-footer a {
    color: #212529;
    text-decoration: underline;
  }
  
  .dropdown-menu .dropdown-footer a:hover {
    text-decoration: none;
  }
  
  .dropdown-menu .dropdown-divider {
    color: #a5c5fe;
    margin: 0;
  }
  
  .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
    font-weight: 600;
  }
  
  .dropdown-menu .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
  }
  
  .dropdown-menu .dropdown-item:hover {
    background-color: #f6f9ff;
  }
  
  @media (min-width: 768px) {
    .dropdown-menu-arrow::before {
      content: "";
      width: 13px;
      height: 13px;
      background: #fff;
      position: absolute;
      top: -7px;
      right: 20px;
      transform: rotate(45deg);
      border-top: 1px solid #eaedf1;
      border-left: 1px solid #eaedf1;
    }
  }
  
  @keyframes dropdown-animate {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  
    0% {
      opacity: 0;
    }
  }


  .dashcard {
background: rgba( 255, 255, 255, 0.25 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
  }

  .dashcard i {
    font-size: 50px;
    color: white;
  }

  .dashcard a {
    color: white;
    text-decoration: none;
  }

  .dashcard a:hover {
    text-decoration: underline;
  }

  #trackstatus thead {
    background-color: var(--primary);
    color: white;
  }


  .form-section {
    /* background-color: #f9f9f9; */
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    /* border: 1px solid #e9e9e9; */
    border: 1px solid #bbbbbb;
}