/* 1. Global*/

/* CSS to style fonts */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: 'Work Sans';
}

/* Global body style */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Transparent main contnet */
.content-wrapper, .tab-content, .content {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* CSS to style mandatory stars */
.mandatory_star {
  color: #CC6677;
  font-size: 16px;
}

/* 2. Header*/

.main-header {min-height: 80px}

.dropdown-menu {
          min-width: 275px !important;  /* Adjust width as needed */
        }
        .dropdown-menu .dropdown-header {
          white-space: nowrap !important;  /* Prevents wrapping */
        }
        /* Custom styles for navbar menu */
        .nav-item .nav-link {
          font-size: 18px !important;  /* Set font size */
          color: #1c75bc !important;  /* Set text color */
          font-weight: bold !important; /* Make text bold */
        }
        .nav-item .nav-link:hover {
          color: #f15a29 !important;  /* Set hover color */
        }

/* 3. App info*/

/* Background image */

#app_info_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('iStock_app_info.jpg');
  background-size: cover;
  background-position: center;
  z-index: -999;
}

/* 4. Filters*/

/* 4.1 Product filter*/

/* 4.2 Feauture filter*/

/* 5. Add data*/

/* 6. Paper*/

/* 7. About*/

/* 8. Contact*/

#app_contact_us_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('iStock_contact_us.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -999;
}

/* 9. Controlbar*/

 /* Padding controlbar */
.control-sidebar {
  overflow-y: auto;
  padding-top: 25px !important;
}

/* Default pill style - square edges */
.control-sidebar .nav-pills .nav-link {
  background-color: white !important;
  color: #f15a29 !important;
  border: 1px solid #f15a29 !important;
  border-radius: 0px !important;
}

/* Active (selected) pill style */
.control-sidebar .nav-pills .nav-link.active {
  background-color: white !important;
  color: #f15a29 !important;
  font-weight: bold;
  box-shadow: inset 0 0 0 2px #f15a29 !important;
  border-radius: 0px !important;
}

/* Center the nav-pills in the controlbar */
.control-sidebar .nav-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* spacing between pills if multiple */
}






