  @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@font-face {
  font-family: 'UTM';
  src: url('../fonts/UTMHelvetIns.woff2') format('woff2'),
      url('../fonts/UTMHelvetIns.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

  :root{
    --primary-color: #086db5;
    --cal-text: 24px;
    --text-header: 30px;
  }

  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
  }
  body{
    overflow: hidden;
  }

  a {
    text-decoration: none !important;
  }

  .navcusom{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 70px;
    background: var(--primary-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;

  }

  .notification-icon {
    position: relative;
    cursor: pointer;
    margin-right: 20px;
  }

  .notification-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
  }

  .notification-icon:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
  }

  .home-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    margin-left: 20px;
  }

  .home-button span {
    font-size: 14px;
  }
  .header {
    font-family: "UTM";
    font-size: var(--text-header);
    text-align: center;
    text-transform: uppercase;
}

  .container{
    width: 100%;
    overflow-x: hidden;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #006db5;
    padding: 10px 0;
  }

  .nav-content {
    display: inline-flex;
    padding: 0 30px;
    flex-wrap: wrap;
  }

  .menu-item {
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
  }

  .menu-item:hover {
    border-bottom: 2px solid #fff;
  }



  .btn-user{
    display: flex;
    align-items: center;
  }

  .text-say {
    color: #fff;
  }

  .user-name {
    color: #fff;
    font-weight: 500;
  }



  .sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 260px;
    z-index: 10;
    transition: all 0.5s ease;
    border-right: 1px solid #ccc;
  }
  .sidebar.close{
    width: 78px;
  }
  .sidebar .logo-details{
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .sidebar .nav-links{
    height: 100%;
    padding: 80px 0 150px 0;
    overflow: auto;
  }
  .sidebar.close .nav-links{
    overflow: visible;
  }
  .sidebar .nav-links::-webkit-scrollbar{
    display: none;
  }
  .sidebar .nav-links li{
    position: relative;
    list-style: none;
    transition: all 0.4s ease;
  }
  .sidebar .nav-links li:hover{
    background: #fff;
  }
  .sidebar .nav-links li .iocn-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar.close .nav-links li .iocn-link{
    display: block
  }
  .sidebar .nav-links li i{
    height: 50px;
    min-width: 78px;
    text-align: center;
    line-height: 50px;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .sidebar .nav-links li img{
    height: 30px;
    width: 30px;
    margin: 10px 24px !important;
    object-fit: contain;
  }

  .sidebar .nav-links li svg{
    height: 20px;
    min-width: 60px;
    text-align: center;
    line-height: 50px;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 15px 9px;
  }
  .sidebar .nav-links li.showMenu i.arrow{
    transform: rotate(-180deg);
  }
  .sidebar.close .nav-links i.arrow{
    display: none;
  }
  .sidebar .nav-links li a{
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .sidebar .nav-links li a .link_name{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    transition: all 0.4s ease;
    white-space: nowrap;
  }
  .sidebar.close .nav-links li a .link_name{
    opacity: 0;
    pointer-events: none;
  }

  .sidebar .nav-links li div .link_name{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    transition: all 0.4s ease;
    white-space: nowrap;
  }
  .sidebar.close .nav-links li div .link_name{
    opacity: 0;
    pointer-events: none;
  }
  .sidebar .nav-links li .sub-menu{
    padding: 6px 6px 14px 45px;
    margin-left: 35px;
    background: #fff;
    display: none;
  }
  .sidebar .nav-links li.showMenu .sub-menu{
    display: block;
  }
  .sidebar .nav-links li .sub-menu a{
    color: #000;
    font-size: 17px;
    padding: 5px 0;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  .sidebar .nav-links li .sub-menu a:hover{
    opacity: 1;
  }
  .sidebar.close .nav-links li .sub-menu{
    position: absolute;
    left: 100%;
    top: -10px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    opacity: 0;
    display: block;
    pointer-events: none;
    transition: 0s;
  }
  .sidebar.close .nav-links li:hover .sub-menu{
    top: 0;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
  }
  .sidebar .nav-links li .sub-menu .link_name{
    display: none;
  }
  .sidebar.close .nav-links li .sub-menu .link_name{
    font-size: 18px;
    opacity: 1;
    display: block;
  }

  .sidebar .nav-links li .sub-menu.blank{
    opacity: 1;
    pointer-events: auto;
    padding: 3px 20px 6px 16px;
    opacity: 0;
    pointer-events: none;
  }
  .sidebar .nav-links li:hover .sub-menu.blank{
    top: 50%;
    transform: translateY(-50%);
  }
  .sidebar .profile-details{
    position: fixed;
    bottom: -180px;
    width: 260px;
    background: #fff;
    padding: 12px 0;
    transition: all 0.5s ease;
  }
  .sidebar.close .profile-details{
    background: none;
  }
  .sidebar.close .profile-details{
    width: 78px;
  }
  .sidebar .profile-details .profile-content{
    display: flex;
    align-items: center;
  }

  .sidebar.close .profile-details i,
  .sidebar.close .profile-details .profile_name,
  .sidebar.close .profile-details .job{
    display: none;
  }

  .home-section{
    position: relative;
    background: #fff;
    height: 100vh;
    left: 260px;
    width: calc(100% - 260px);
    transition: all 0.5s ease;
    padding: 12px;
    overflow: auto;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
  }
  .home-section::-webkit-scrollbar {
    width: 0 !important;
    display: none;
  }
  .sidebar.close ~ .home-section{
    left: 78px;
    width: calc(100% - 78px);
  }
  .home-content{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .home-section .home-content .bx-menu,
  .home-section .home-content .text{
    color: #11101d;
    font-size: 35px;
  }
  .home-section .home-content .bx-menu{
    cursor: pointer;
    margin-right: 10px;
  }
  .home-section .home-content .text{
    font-size: 26px;
    font-weight: 600;
  }


.sidebar .nav-links > li,
.sidebar .nav-links > li.active {
  border-left: none !important;
}

/* Style cho trạng thái active chỉ dùng màu chữ */
.sidebar .nav-links > li.active > a {
  color: var(--primary-color);
}

.sidebar .nav-links li .sub-menu a.active {
  color: var(--primary-color);
  font-weight: 500;
}

.header-content--02 svg {
  height: 30px;
  width: 30px;
  fill: var(--primary-color);
}

  .header-page {
    font-size: var(--cal-text);
    font-weight: 500;
  }

  .content-01 {
    border-right: 2px solid #ccc;
    margin: 20px 10px !important;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ccc;
  width: 100% !important;
  padding-top: 10px;
  padding-left: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

}
.btn-filter{
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 20px;
}

.filter-header svg {
  width: 20px;
  height: 20px;
  font-weight: 500;
}



.content-02 {
    margin: 20px 10px !important;
}
  .row-content {
    display: flex;
    align-items: center;

  }
  .row-address {
    padding-bottom: 20px ;
  }
  .header-lable--link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    margin: 10px 0;
  }

  .header-content--02 {
    display: flex;
    align-items: center;
    margin:20px 0px;
  }

  .header-02 {
    font-weight: 500;
    margin-left: 10px;
  }

  .header-lable {
    min-width: 100px;
    height: 50px;
    color: var(--primary-color);
    font-weight: 500;
}

.text-content {
    min-width: 150px;
    height: 50px;
    float: left;
    font-weight: 400;
    color: #000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

  .lable-status {
    font-size: 12px;
    margin-top: 10px;
    display: flex;
    align-items: center;
  }

  .status-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
  }

  .status-color{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
  }

  .lable-status--success {
    padding: 5px;
    background-color: rgba(236, 253, 243, 1);
    border-radius: 20px;
    margin-top: -2px;
}

.success {
    background-color: green;
  }

.text-success {
    color: green;
}

.lable-status--warning {
    padding: 5px;
    background-color: rgba(235, 227, 32, 0.21);
    border-radius: 20px;
    margin-top: -2px;
}

.warning {
    background-color: rgba(255, 214, 0, 1);
  }

.text-warning {
    color:  rgba(255, 214, 0, 1);
}

.lable-status--expires {
  padding: 5px;
  background-color: #EB202736;
  border-radius: 20px;
  margin-top: -2px;
}

.expires {
  background-color: #EB2027;
}

.text-expires {
  color:  #EB2027;
}

.lable-status--doc {
  padding: 5px;
  background-color:#B3DFFF;
  border-radius: 20px;
  margin-top: -2px;
}

.doc {
  background-color: #086DB5;
}

.text-doc {
  color:  #086DB5;
}

.lable-status--contract {
  padding: 5px;
  background-color:#FCE9D4;
  border-radius: 20px;
  margin-top: -2px;
}

.contract {
  background-color: #BA4B14;
}

.text-contract {
  color:  #BA4B14;
}


.lable-status--deft {
  padding: 5px;
  background-color:#D4CCFF;
  border-radius: 20px;
  margin-top: -2px;
}

.deft {
  background-color: #62598F;
}

.text-deft {
  color:  #62598F;
}


@media screen and (max-width: 400px){
  .sidebar{
    width: 240px;
  }
  .sidebar.close{
    width: 78px;
  }
  .sidebar .profile-details{
    width: 240px;
  }
  .sidebar.close .profile-details{
    background: none;
  }
  .sidebar.close .profile-details{
    width: 78px;
  }
  .home-section{
    left: 240px;
    width: calc(100% - 240px);
  }
  .sidebar.close ~ .home-section{
    left: 78px;
    width: calc(100% - 78px);
  }
}



.btn-request {
  max-width: 150px !important;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 8px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--primary-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(8, 109, 181, 0.2);
}

.btn-request:hover {
  background-color: #fff;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(8, 109, 181, 0.3);
}

.btn-request:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(8, 109, 181, 0.2);
}

.btn-request svg {
  width: 24px;
  height: 24px;
  fill: currentColor; /* Màu icon sẽ thay đổi theo màu text */
  margin-right: 10px;
  transition: all 0.3s ease;
}

.btn-infomation {
    padding: 8px 24px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    border: 1.5px solid var(--primary-color);
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(8, 109, 181, 0.2);
}

.btn-infomation:hover {
    background-color: #fff;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(8, 109, 181, 0.3);
}

.btn-infomation:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(8, 109, 181, 0.2);
}

.btn-logout {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 18px;
}

.iocn-link div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


.sidebar .nav-links li.showMenu .sub-menu {
  display: block !important;
}

.sidebar .nav-links li .sub-menu.showMenu {
  display: block !important;
  border-left: 2px solid #000;
}

.arrow.showMenu {
  transform: rotate(-180deg) !important;
}




/* Social icons modern */
.social-icons-modern {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.social-icons-modern .fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
  overflow: visible;
  color: #fff;
}

.social-icons-modern .fab-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-icons-modern .fab-btn i {
  font-size: 24px;
}

/* Tooltip on hover */
.social-icons-modern .fab-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-15px);
  background: rgba(15, 23, 42, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.social-icons-modern .fab-btn::after {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-9px);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(15, 23, 42, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.social-icons-modern .fab-btn:hover::before,
.social-icons-modern .fab-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-10px);
}

.social-icons-modern .fab-btn:hover::after {
  transform: translateY(-50%) translateX(-4px);
}

/* Colors */
.fab-email { background: #f59e0b !important; color: #fff !important; }
.fab-zalo { background: #0068ff !important; color: #fff !important; }
.fab-phone { background: #10b981 !important; color: #fff !important; }
.fab-messenger { background: #0084ff !important; color: #fff !important; }
.fab-top { 
  background: #ffffff !important; 
  color: #475569 !important; 
  border: 1px solid #e2e8f0;
}
.fab-top:hover {
  background: #f8fafc !important;
  color: var(--primary-color) !important;
}
