@font-face {
  font-family: 'Bauhaus Std';
  src: url('/fonts') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins\ Regular\ 2\ 1\ \(1\).ttf') format('truetype');

  font-weight: 500;
  font-style: normal;
}

@media (max-width: 768px) {
  .xml-box {
      min-width: 100%;
  }
}
@media (max-width: 768px) {
  
  .xml-wrapper {
    flex-direction: column;
  }

  .xml-box {
    min-width: 100%;
  }
}

.desktop-profile {
  display: flex;
  align-items: center;
  background-color: #e5edf5;
  border-radius: 20px;
  padding: 4px 6px;
  gap: 5px;
  cursor: pointer;
  /* margin-right: 30px; */
}

.mobile-profile {
  display: none;
  /* align-items: center;
  background-color: #e5edf5;
  border-radius: 20px;
  padding: 4px 10px;
  gap: 5px;
  cursor: pointer; */
}

/* Show the navbar menu as flex on large screens */
.navbar-menu {
  display: flex;
  flex-direction: row; /* change to column if needed */
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-menu {
  display: none;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  padding: 10px 0;
  align-items: stretch;
}


@media (min-width: 769px) {
  .navbar-menu {
      display: flex;
      flex-direction: row; 
      align-items: center;
       padding: 10px 0;
 align-items: stretch;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
      display: none;
  }
}

  @media (max-width: 768px) {


 
 .navbar {
  flex-wrap: wrap;
  width: 98%;
  /* padding: 10px; */
  justify-content: initial !important;}
 .navbar-menu.active {
  display: flex;
 }
 
 .navbar-profile {
  display: none ;
 }

 /* Show/Hide profile icons based on screen size */

.mobile-profile {
  display: none;
}

/* For mobile screens */
@media (max-width: 768px) {
  .desktop-profile {
    display: none;
  }
  .mobile-profile {
    display: flex;
  }
}


 
 .sidebar {
  display: none;
 }
 
 
 .tabs {
   display: flex;
   border-bottom: 2px solid #ccc;
   font-family: "Poppins", sans-serif;
   max-width: 63%; 
 }
 
 /* Mobile View - Disable max-width */
 @media (max-width: 768px) {
   .tabs {
     max-width: 100%; /* or simply remove it */
     width: 100%; /* Ensure full width on mobile */
     justify-content: space-evenly;
   }
   
 }
 
 
 
 .navbar-menu a {
  padding: 12px 16px;
  width: 100%; /* make each menu item full width */
  box-sizing: border-box;
 }
 }
body {
  font-family: 'poppins', sans-serif;
    margin: 0;
    background-color: #F2F9FF;
    /* width: fit-content;  */
  }
  

  .dropdown-menu {
    position: absolute;
    right: 0;
    top: 73%;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 200px;
    display: none;
    z-index: 1000;
  }
  .xml-wrapper {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 /* Make xml-boxes side by side in desktop */
 /* .xml-box {
   flex: 1;
   min-width: 45%;
 }
  */


 
  /* .dropdown-menu.show {
    display: block;
  }
  */
  .dropdown-header {
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
 
  .dropdown-item {
    padding: 10px;
    cursor: pointer;
  }
 
  .dropdown-item i {
    margin-right: 10px;
  }
 
  .dropdown-item:hover {
    background-color: #f0f0f0;
  }
 
  .divider {
    margin: 5px 0;
    border-top: 1px solid #ddd;
  }
 
  

  .container {
    display: inline-flex;
  }

 
  @media (max-width: 768px) {
 
 
 .navbar-menu.active {
  display: flex;
 }
 

 .sidebar {
  display: none;
 }
 
 /* Base .tabs style */
 .tabs {
   display: flex;
   border-bottom: 2px solid #ccc;
   font-family: "Poppins", sans-serif;
   max-width: 63%; /* only for larger screens */
 }
 
 /* Mobile View - Disable max-width */
 @media (max-width: 768px) {
   .tabs {
     max-width: 100%; /* or simply remove it */
     width: 100%; /* Ensure full width on mobile */
     justify-content: space-evenly;
   }
   
 }
 
 @media (max-width: 768px) {
  .tech-card {
    width: 100% !important;  /* Add !important to override inline or stronger styles */
  }
}


 .dropdown-menu {
  position: absolute;
  right: 0;
  top: 73px;
  background-color: #fff;
  color: #333;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 200px;
  display: none;
  z-index: 1000;
}
.xml-wrapper {
 display: flex;
 flex-wrap: wrap;
 gap: 20px;
}

/* Make xml-boxes side by side in desktop */
.xml-box {
 flex: 1;
 min-width: 45%;
}

/* On mobile: stack request and response vertically */
@media (max-width: 768px) {
 .xml-wrapper {
   flex-direction: column;
 }

 .xml-box {
   min-width: 100%;
 }
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.dropdown-item {
  padding: 10px;
  cursor: pointer;
}

.dropdown-item i {
  margin-right: 10px;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

.divider {
  margin: 5px 0;
  border-top: 1px solid #ddd;
}

 .navbar-menu a {
  padding: 12px 16px;
  width: 100%; /* make each menu item full width */
  box-sizing: border-box;
 }
 }
  
  .xml-wrapper {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 /* Make xml-boxes side by side in desktop */
 .xml-box {
   flex: 1;
   min-width: 45%;
 }
 
 /* On mobile: stack request and response vertically */
 @media (max-width: 768px) {
   .xml-wrapper {
     flex-direction: column;
   }
 
   .xml-box {
     min-width: 100%;
   }
 }
 
  .dropdown-menu.show {
    display: block;
  }
 
  .dropdown-header {
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
 
  .dropdown-item {
    padding: 10px;
    cursor: pointer;
  }
 
  .dropdown-item i {
    margin-right: 10px;
  }
 
  .dropdown-item:hover {
    background-color: #f0f0f0;
  }
 
  .divider {
    margin: 5px 0;
    border-top: 1px solid #ddd;
  }
 
 
  /* .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
  } */
 
  @media (max-width: 768px) {

 /* .menu-toggle {
  display: block;
  color: #333;
  margin-left: 77%;
 } */
 

 
 .navbar-menu.active {
  display: flex;
 }
 
 .navbar-profile {
  display: none;
 }
 
 .sidebar {
  display: none;
 }
 
 /* Base .tabs style */
 .tabs {
   display: flex;
   border-bottom: 2px solid #ccc;
   font-family: "Poppins", sans-serif;
   max-width: 63%; /* only for larger screens */
 }
 
 /* Mobile View - Disable max-width */
 @media (max-width: 768px) {
   .tabs {
     max-width: 100%; /* or simply remove it */
     width: 100%; /* Ensure full width on mobile */
     justify-content: space-evenly;
   }
   
 }
 
 
 .navbar-menu a {
  padding: 12px 16px;
  width: 100%; /* make each menu item full width */
  box-sizing: border-box;
 }
 }
 




 /* On mobile: stack request and response vertically */
 @media (max-width: 768px) {
   .xml-wrapper {
     flex-direction: column;
   }
 
   .xml-box {
     min-width: 100%;
   }
 }
 

 

 .xml-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Make xml-boxes side by side in desktop */
/* .xml-box {
  flex: 1;
 
} */


/* @media (max-width: 768px) {
  .xml-wrapper {
    flex-direction: column;
  }

  .xml-box {
    min-width: 100%;
  }
} */

 .dropdown-menu.show {
   display: block;
 }

 .dropdown-header {
   padding: 10px;
   border-bottom: 1px solid #ccc;
 }

 .dropdown-item {
   padding: 10px;
   cursor: pointer;
 }

 .dropdown-item i {
   margin-right: 10px;
 }

 .dropdown-item:hover {
   background-color: #f0f0f0;
 }

 .divider {
   margin: 5px 0;
   border-top: 1px solid #ddd;
 }

 /* Hamburger menu */
 .menu-toggle {
   display: none;
   font-size: 24px;
   cursor: pointer;
 }

 @media (max-width: 768px) {
  /* .navbar {
    flex-wrap: wrap;
    width: 98%;
    padding: 10px;
    justify-content: initial;
   } */


.navbar-menu.active {
 display: flex;
}

.navbar-profile {
 display: none;
}

.sidebar {
 display: none;
}

/* Base .tabs style */
.tabs {
  display: flex;
  border-bottom: 2px solid #ccc;
  font-family: "Poppins", sans-serif;
  max-width: 63%; /* only for larger screens */
}

/* Mobile View - Disable max-width */
@media (max-width: 768px) {
  .tabs {
    max-width: 100%; /* or simply remove it */
    width: 100%; /* Ensure full width on mobile */
    justify-content: space-evenly;
  }
  
}


.navbar-menu a {
 padding: 12px 16px;
 width: 100%; /* make each menu item full width */
 box-sizing: border-box;
}
}



  .dropdown-menu.show {
    display: block;
  }
 
  .dropdown-header {
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
 
  .dropdown-item {
    padding: 10px;
    cursor: pointer;
  }
 
  .dropdown-item i {
    margin-right: 10px;
  }
 
  .dropdown-item:hover {
    background-color: #f0f0f0;
  }
 
  .divider {
    margin: 5px 0;
    border-top: 1px solid #ddd;
  }
 
  /* Hamburger menu */
  /* .menu-toggle {
    display: none;
    
   
  } */

  /* .navbar-left{
    margin-left: 50px;
  } */
 
  @media (max-width: 768px) {

 .navbar-profile {
  display: none;
 }

 
 .menu-toggle {
  display: block;
  color: #333;
  /* margin-left: auto;  */
  cursor: pointer;
  margin-left: 75%;

 }
 

.desktop-profile {
  display: flex;
  align-items: center;
  background-color: #e5edf5;
  border-radius: 20px;
  padding: 4px 10px;
  gap: 5px;
  cursor: pointer;
}



@media (max-width: 768px) {
 
  .desktop-profile {
    display: none;
  }
  .profile-circle{
    background-color: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
    color: #1f2937;
  }
 
  .mobile-profile {
    display: flex;
    align-items: center;
    background-color: #e5edf5;
    border-radius: 20px;
    padding: 4px 6px;
    gap: 5px;
    cursor: pointer;
  }

  .navbar-menu {
    flex-direction: column;  /* Stack the items vertically */
  }

  /* Profile block inside the mobile menu (as toggle) */
  /* .mobile-profile {
    margin-top: 10px;
  } */
}

@media (min-width: 768px) {
 
   .mobile-profile {
    display: none;
  }

  .desktop-profile {
    display: flex;
  }

 
 
  /* .mobile-profile {
    display: flex;
    align-items: center;
    background-color: #e5edf5;
    border-radius: 20px;
    padding: 4px 10px;
    gap: 5px;
    cursor: pointer;
  } */

  .navbar-menu {
    flex-direction: column;  /* Stack the items vertically */
  }

  /* Profile block inside the mobile menu (as toggle) */
  .mobile-profile {
    margin-top: 10px;
  }
}

 
 .navbar-menu.active {
  display: flex;
  flex-direction: column;
 }
 
 .navbar-profile {
  display: none;
 }
 
 .sidebar {
  display: none;
 }
 
 /* Base .tabs style */
 .tabs {
   display: flex;
   border-bottom: 2px solid #ccc;
   font-family: "Poppins", sans-serif;
   max-width: 63%; /* only for larger screens */
 }
 
 /* Mobile View - Disable max-width */
 @media (max-width: 768px) {
   .tabs {
     max-width: 100%; /* or simply remove it */
     width: 100%; /* Ensure full width on mobile */
     justify-content: space-evenly;
   }
   
 }
 
 
 .navbar-menu a {
  padding: 12px 16px;
  width: 100%; /* make each menu item full width */
  box-sizing: border-box;
 }
 }
 
.footerTitle{
  font-family: 'poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.footerText{
  font-family: 'poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #DAF1FF;
  
}
  .footerStyle {
    font-family: "Bauhaus Std", sans-serif;
    font-weight: 500;
    font-size: 24px;
  }

  .tabdiscription{
    font-family: 'poppins', sans-serif;
    font-size: 14px;
    color: #4B5772;
  }

  .sidebar a {
    text-decoration: none;
    color: inherit; 
  }
  
  .sidebar a.active {
    /* background-color: #f0f0f0;  */
    color: #c8d0d7;
    font-weight: bold;
  }
  
  .sidebar a:hover {
    text-decoration: none; /* Still no underline on hover */
  }

  .sidebar ul {
    list-style: none;
    padding: 0;
  }

  .sidebar li {
    
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #4B5772;
  }

  .sidebar li:hover,
  .sidebar .active {
    /* background-color: #e8edfb; */
    color: #4B5772;
    font-weight: 600;
  }

  .tabHeader{
     font-family: 'poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: -0.8px;
  vertical-align: middle;
  color: #25304B;
  }

  .tabheading{
    font-family: 'Bauhaus Std', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.8px;
  vertical-align: middle;
  color: #25304B;
  }

  .submenu {
    margin-left: 20px;
  }

  .submenu li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .submenu.show {
    display: block;
  }

  .submenu.hide {
    display: none;
  }

  .icon {
    margin-right: 10px;
  }

  .arrow {
    font-size: 12px;
    margin-left: auto;
    transition: transform 0.2s ease;
  }

  .arrow.rotate {
    transform: rotate(180deg);
  }
  
  @media (max-width: 768px) {
    .navbar {
      width: auto;
    }
  }
  
  .navbar {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 35px; 
    background-color: #f9fafc;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    z-index: 1000;
    width: -webkit-fill-available;
  }
  .air-shopping-heading {
    font-family: 'Bauhaus Std', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.8px;
    vertical-align: middle;
    color: #25304B;
    margin-top: 10px;
  }
  .arrow {
    transition: transform 0.3s ease;
  }
  
  .arrow.rotate {
    transform: rotate(180deg);
  }
  .logo {
    height: 35px;
  }
  

  
  .navbar-menu li a {
    text-decoration: none;
    color:#25304B;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
  }
  
  .highlight {
    color: #209326; 
  }

  .logo {
    width: 133px;
    height: 80px;
    object-fit: contain; 
  }
  
  
  .navbar-profile {
    display: flex;
    align-items: center;
    background-color: #e5edf5;
    border-radius: 20px;
    padding: 4px 10px;
    gap: 5px;
    cursor: pointer;
  }
  
  .profile-circle {
    background-color: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
    color: #1f2937;
  }
  
  .dropdown-iconnav {
    font-size: 16px !important;
    color: #1f2937;
  }

  .sidebar h2 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .sidebar ul {
    list-style: none;
    padding-left: 0;
  }
  
  .sidebar li {
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
  }
  
  .sidebar a.active,
  .sidebar a:hover {
    background-color: #d1e3fa;
    font-weight: bold;
  }
  
  
  .main-content {
    flex: 1;
    padding: 103px 30px 55px 30px; /* top right bottom left */
    /* background-color: #fff; */
  }
  
  .table-icon {
    color: #000099;
  }
  
  h1 {
    color: #0066cc;
    margin-bottom: 10px;
  }
  
  .styled-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    background-color: #f9f9ff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  
  
  
  
  





