:root {
    --main-bg: #1A1A1A;
    --primary-text-color: #FF5E4F;
    --main-bg-text: #fff;
    --main-bg-font-12: clamp(11px, 12px + 0.20vw, 12px);
    --main-bg-font-14: clamp(13px, 14px + 0.25vw, 14px);
    --main-bg-font-16: clamp(15px, 16px + 0.30vw, 16px);
    --main-bg-font-18: clamp(16px, 18px + 0.40vw, 18px);
    --main-bg-font-24: clamp(20px, 24px + 0.60vw, 24px);
    --login-gap: 10px; /* change this to match your image (e.g. 12px, 14px) */
}
::-webkit-scrollbar {
  width: 7px;
  position: relative;
}

/* Track */
::-webkit-scrollbar-track {
  background: #d1d1d2;
  border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #e85737;
  border-radius: 10px;
}

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #e85737;
  }

body {
    margin: 0px;
    padding: 0px;
}

.header-container.main-bg {
    background: var(--main-bg);
    padding: 0px 24px 0px 38px;
    color: var(--main-bg-text);
    box-shadow: 0px 4px 4px 0px #0000001A;
}

.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.separater-line {
    display: inline-block;
    height: 24px;
    background-color: #ccc;
    width: 2px;
}

.Project-name {
    font-size: var(--main-bg-font-24);
    font-weight: 500;
    color: var(--main-bg-text);
}

.header-right-conetnt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
}

.right-links,
.img-text-item,
.login-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.img-text-item {
    gap: 8px;
}

.right-links {
    gap: 16px;
}

/* Stack EmpName and role vertically with 10px spacing and style like the reference */
.login-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:0px !important;
    line-height: 1;
}

/* Employee name: bold and slightly larger */
/*.login-text strong {
    font-size: var(--main-bg-font-16);
    font-weight: 700;
    color: #ffffff;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}*/
  .login-text strong {
    font-size: var(--main-bg-font-16);
    font-weight: 700;
    color: #ffffff;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 10px !important;
  }
    /* Role select styled to look like a plain label with a caret */
    .role-select {
    background-color: transparent !important;
    border: none !important;
    color: #bfe8ff !important; /* light-blue role color like the reference */
    font-size: var(--main-bg-font-14) !important;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

/* Add a small caret using background-image so the select still shows a down arrow */
.role-select {
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 10px;
    /* using an inline SVG data URI so there's always a caret and no extra asset required */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23bfe8ff' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    padding-right: 18px; /* make space for the caret */
}

/* keep avatar styles */
.login-img {
    width: 39px;
    height: 39px;
    background: #FF5E4F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.login-img img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

/* text sizes for other spans */
.img-text-item span {
    font-size: var(--main-bg-font-14);
}

.login-text span {
    font-size: var(--main-bg-font-12);
}

.login-info {
    gap: 15px;
}

.header-box1 {
  display: flex;
  justify-content: normal;
  gap: 40px;
  align-items: center;
  height: 40px;
  background-color: white;
  color: black;
  background: #fff;
  padding: 0px 24px 0px 38px;
  color:#1a1a1a;
  box-shadow: 0px 4px 4px 0px #0000001A;
}
.img-text-item{
    cursor:pointer;
}

/* Active tab styling: color and bottom border */
.header-box1 .img-text-item .active {
    color: #ff3b30 !important;
    border-bottom: 2px solid #ff3b30;
    display: inline-block;
    padding-bottom: 4px;
    transition: color 120ms ease, border-color 120ms ease;
}
ul.ic-breadcrumbs {
  list-style-type: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 0px;
}

  ul.ic-breadcrumbs li {
    padding: 0px 3px;
  }

    ul.ic-breadcrumbs li:first-child {
      padding-left: 0px;
    }

    ul.ic-breadcrumbs li a {
      font-size: 15px;
      line-height: 50px;
      position: relative;
      display: inline-block;
      text-decoration: none;
      padding: 0px 5px;
    }

      ul.ic-breadcrumbs li a:after {
        content: "\f105";
        display: inline-block;
        position: absolute;
        color: #4A739C;
        font-family: FontAwesome;
        margin-left: 0px;
        font-size: 18px;
        font-weight: 500;
      }

      ul.ic-breadcrumbs li a.active:after, ul.ic-breadcrumbs li a.active {
        color: #0D141C !important;
        font-weight: 600;
      }

      ul.ic-breadcrumbs li a:first-child {
        padding-left: 0px;
      }

    ul.ic-breadcrumbs li:last-child a:after {
      display: none;
    }

    ul.ic-breadcrumbs li a:after {
      content: "";
      background-image: url(../images/back_slash.svg);
      background-repeat: no-repeat;
      width: 7px;
      height: 16px;
      left: 5px;
      top: -1px;
      display: inline-block;
      position: relative;
      vertical-align: middle;
      cursor: pointer;
      background-size: cover;
      transition: background-image 0.3s ease;
    }
ul.ic-breadcrumbs {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center;
  width: 100% !important;
  padding-inline-start: 0 !important;
  margin: 0 !important;
}
@media (320px <=width <=779px) {
  .header-box, .header-right-conetnt {
      flex-wrap: wrap;
      height: auto;
      gap: 15px;
    }

    .header-right-conetnt {
      gap: 15px;
    }

    .header-container.main-bg {
      padding: 10px 15px 10px 15px;
    }

    /* keep vertical layout and spacing on small screens */
    .login-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
  }
