@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
  --top-navbar-height: 50px;
  --footer-height: 2.5rem;
  --bluelevel01: #0d3451;
  --bluelevel02: #0D3451;
  --bluelevel03: rgba(226, 237, 255, 1);
  --priorityColor: rgba(104, 26, 111, 1);
  --border-color: #C8C4C4;
  --white: #fff;
  /* Layout consistency */
  --content-max-width: 1140px;
  --sidebar-top-gap: 0.625rem;
  /* Standardized border radius values */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-pill: 50px;
  --border-radius-circle: 50%;
  /* Main app border radius - consistent across sidebar and content */
  --app-border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-ubuntu);
  text-decoration: none;
  font-size: 13px;
}

/* body {
  background-color: #F9F9F8 !important;
} */


textarea:focus,
input:focus {
  outline: none;
}

*:focus {
  outline: none;
}

/* For the "inset" look only */
/* html {
  overflow: auto;
}
body {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: 20px;
  right: 20px;
  padding: 30px; 
  overflow-y: scroll;
  overflow-x: hidden;
} */

/* Let's get this party started */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: rgba(253, 238, 238, 0.8);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(207, 204, 204, 0.8);
}

/* NavBar */
nav {
  width: 100%;
  height: var(--top-navbar-height);
  justify-content: space-between;
  position: sticky;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.topnav {
  /* background-color: rgba(13, 52, 81, 1); */
  background-color: rgba(13, 52, 81, 1);
  mix-blend-mode: normal;
  align-self: center;
}

.rightnav {
  float: right;
}

.topnav a,
.topnav button,
.topnav div {
  color: #f2f2f2;
  text-align: center;
  align-self: center;
  text-decoration: none;
  font-size: 1.3rem;
}

.companyBrand {
  font-weight: bold;
}

.companyBrand img {
  margin-top: 5px;
}

.topnav .icon {
  display: none;
}

.dropdown-menu {
  display: none;
  position: relative;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  margin-right: 10px;
  min-width: 200px;
  z-index: 1000;
}

.dropdown-menu a {
  float: none;
  font-size: 1rem;
  color: black;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:not(.companyBrand):hover,
.dropdown-toggle:hover .dropbtn {
  font-weight: bold;
  color: rgba(13, 52, 81, 1);
}

.dropdown-menu a:hover {
  color: black;
}

.dropdown-toggle a:hover .dropdown-menu a {
  display: block;
}


.item:hover {
  color: rgba(13, 52, 81, 1);
}

.navbar-nav {
  padding-top: 1rem;
  position: absolute;
}

.navbarItem,
.navbar-nav {
  height: 100%;
  font-size: 1rem;
}

.navbarItem {
  margin-right: 5px;
  align-self: center;
  color: #ffff;
}

.navbarLink {
  color: #FFFFFF;
  font-weight: 600 !important;
}

.navbarItem:hover .navbarLink,
.activedTab a {
  height: 100%;
  color: rgba(13, 52, 81, 1);
  background-color: #ffff;
  font-weight: 600 !important;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/* Keep employer profile icons white on hover - specific to employer profile IDs */
#profilePersonIcon,
#profilePersonIconNonReviewed {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
}

#navbarDropdownMenuLink:hover #profilePersonIcon,
#navbarDropdownMenuLinkNonReviewed:hover #profilePersonIconNonReviewed {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
}

/* Keep employer dropdown arrows white - specific to employer profile IDs */
#navbarDropdownMenuLink.dropdown-toggle::after,
#navbarDropdownMenuLinkNonReviewed.dropdown-toggle::after,
#navbarDropdownMenuLink:hover.dropdown-toggle::after,
#navbarDropdownMenuLinkNonReviewed:hover.dropdown-toggle::after,
#navbarDropdownMenuLink:active.dropdown-toggle::after,
#navbarDropdownMenuLinkNonReviewed:active.dropdown-toggle::after,
#navbarDropdownMenuLink:focus.dropdown-toggle::after,
#navbarDropdownMenuLinkNonReviewed:focus.dropdown-toggle::after,
#navbarDropdownMenuLink[aria-expanded="true"].dropdown-toggle::after,
#navbarDropdownMenuLinkNonReviewed[aria-expanded="true"].dropdown-toggle::after {
  border-top-color: #FFFFFF !important;
  border-bottom-color: #FFFFFF !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
}


.navbarItem {
  background-color: rgba(13, 52, 81, 1);
}

.activedTab {
  height: 100%;
  
  color: rgba(13, 52, 81, 1);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.activedTab a,
.item a:hover {
  color: rgba(13, 52, 81, 1);
  font-weight: bold;
  align-self: center;
}

.activedTab #navbarDropdownMenuLink,
#navbarDropdownMenuLink:hover {
  background-color: #fff !important;
  color: var(--bluelevel01) !important;
}

.dropdown-item:hover {
  color: #fff !important;
  background-color: #0D3451;
}

.col-form-label {
  color: rgba(13, 52, 81, 1);
  font-weight: bold;
}

.link {
  font-weight: normal;
}

.main-body {
  margin-top: var(--top-navbar-height);
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content-max-width);
  min-height: 60vh;
  /* background-color: #F9F9F8 !important; */
}

/* Chat container */
.my-container {
  height: calc(100vh - var(--top-navbar-height));
  min-height: -webkit-fill-available;
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

.main_container {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  /* min-height: 100vh; */
}

.breadcrumbLink {
  font-size: 1.2rem;
  color: var(--bluelevel01);
}

.breadcrumbLink:hover {
  color: rgba(13, 52, 81, 1);
}

.container {
  max-width: var(--content-max-width) !important;
  /* min-height: 100vh; */
}

.stopHover:hover {
  cursor: default;
  color: #000;
  text-decoration: none;
}


hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(255, 222, 222, 0.5);
}

.borderGray {
  border: 1px solid rgba(255, 222, 222, 0.5);
}

.btn,
.buttons-print {
  font-size: 1rem;
  color: #fff;
  padding: .375rem .75rem;
  background-color: #0D3451;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 400;
  border-radius: 5px;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  border-color: var(--border-color);
  outline: none;
  border: none;
}

.formButton {
  width: 185px;
  border-radius: 50px;
}

.btn:hover,
.buttons-print:hover {
  font-weight: bold;
  color: white;
}

.dropdown-toggle {

  background-color: #fff;
  border: 1px solid #ced4da;
}

.dropdown-toggle:hover {
  color: black;
}

/* Basic Font Sizes */
.header {
  font-size: 1.25rem;
}

.sub_header {
  font-size: 1.15rem;
}

.normal_text {
  font-size: 1rem;
}

.bluelvl1 {
  background-color: #0d3451;
}

.bluelvl2 {
  background-color: #0D3451;
}

.bluelvl3 {
  background-color: rgba(226, 237, 255, 1);
}

.textBluelvl1 {
  color: #0d3451;
}

.textBluelvl2 {
  color: #0D3451;
}

.textBluelvl3 {
  color: rgba(226, 237, 255, 1);
}

.borderBottom {
  border-bottom: 1px solid rgba(255, 222, 222, 0.5);
}

.disableButton {
  color: #fff !important;
  text-decoration: none !important;
}

.disableButton:hover {
  cursor: default !important;
  text-decoration: none !important;
}

.pagination .page {
  font-size: 0.8rem;
  width: 20px;
  height: 20px;
  margin-top: 0.5rem;
}

.paginationjs .paginationjs-pages {
  margin-right: 20px;
}

.paginationjs .paginationjs-pages li {
  border: 1px solid rgba(226, 237, 255);
}

.paginationjs .paginationjs-pages li>a {
  font-size: 0.8rem;
  color: rgba(13, 52, 81, 1);
  border: 1px solid rgba(226, 237, 255);
}

.paginationjs .paginationjs-pages li.active>a {
  background-color: rgba(13, 52, 81, 1)
}

.paginationjs-next {
  border-right: 0;
}

.paginationjs .paginationjs-pages li>a {
  min-width: 25px;
  height: 25px;
  line-height: 22px;
}

.paginationjs .paginationjs-pages li.active>a {
  min-width: 25px;
  height: 27px;
  line-height: 25px;
}


/* footer start */
/* .footer {
  background: #f3f3f3;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 55px;
}

.footer ul {
  align-self: center;
  float: right;
  display: flex;
  list-style-type: none;
  font-size: 0.8em;
}
.footer ul li {
  margin: 17px 10px;
  white-space: nowrap;
} */

.navbarLink {
  font-size: 1rem;
}

.nav-link {
  font-size: 1rem;
}

.navbarLink {
  font-size: 1rem;
}


/* Spinner loading */
.loading {
  opacity: 0.5
}


/* .footer ul li {
  font-size: 0.9em;
} */


.required {
  color: red;
  margin-top: -0.2rem;
  position: absolute;
  font-weight: lighter;
  font-size: 1.5rem;
}

.form-control {
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
  /* border: none; */
  border-radius: 5px !important;
}

.input-group::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #0D3451;
  opacity: 1;
  /* Firefox */
}

.input-group:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #0D3451;
}

.input-group::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #0D3451;
}

.form-control {
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
  /* border: none; */
  border-radius: 5px !important;
}

.form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #0D3451;
  opacity: 1;
  /* Firefox */
}

.userProfilePicture {
  object-fit: contain;
}

.font-12 {
  font-size: 12px !important;
}

.footerList li::marker {
  /* content: "●";
  font-size: 1.1rem;
  color: black;
  vertical-align: bottom; */
  list-style: none;
}

.footerList li {
  list-style: none;
}

.removeBullet::marker {
  content: "" !important;
}

.footerList li a {
  text-decoration: none;
  margin-left: 0.5rem;
}


.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #0D3451 !important;
}

.form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #0D3451 !important;
}

.modal-xl {
  max-width: 1075px !important;
  margin: 0 auto;
}

/* footer end */
@media only screen and (max-width: 991px) {
  .navbarItem {
    width: 100%;
    padding: 0.5em;
  }

  .navbar {
    padding-top: 0px;
    height: auto;
  }

  #myTopnav {
    height: var(--top-navbar-height);
  }

  .navbarLink {
    padding-right: .8rem;
    padding-left: .8rem;
    font-size: 12px;
    padding-left: 12px;
    color: #fff;
  }

  .main-body {
    max-width: 100%;
  }
}

/* Footer */
#module {
  font-size: 1rem;
  line-height: 1.5;
}

.card {
  border: none;
}

#module .readMore.collapse:not(.show) {
  display: block;
  height: 2.8rem;
  overflow: hidden;
}

#module .readMore.collapsing {
  height: 2.8rem;
}

/* #showModule a.collapsed::after {
  content: "+ Show More";
}

#showModule a:not(.collapsed)::after {
  content: "- Show Less";
} */


/* Non Selectable Text */
.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Start of Selection */
.loading-overlay {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.full-screen-loader {
  width: 80px;
  height: 80px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--bluelevel01);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* End of Selection */

nav.navbar .notification:after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  background-color: red;
}

nav.navbar .notification {
  position: relative;
  background-color: #ffffff1c;
}

nav.navbar .notification:hover {
  background-color: #FFFFFF
}


.blink {
  color: red;
  -webkit-animation: 2s linear infinite condemned_blink_effect;
  /* for Safari 4.0 - 8.0 */
  animation: 2s linear infinite condemned_blink_effect;
}

/* for Safari 4.0 - 8.0 */
@-webkit-keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }

  50% {
    visibility: hidden;
  }

  100% {
    visibility: visible;
  }
}

@keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }

  50% {
    visibility: hidden;
  }

  100% {
    visibility: visible;
  }
}


/* 20-08-2021 Internsta september release */
/* Common sidebar */
.sidebarMenu {
  min-height: 50vh;
  min-width: 185px;
  width: 185px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--app-border-radius);
  margin-top: 1rem;
  padding-top: 1rem;
  height: fit-content !important;
  /* Sidebar sticks to the top and does not cover content */
  position: sticky;
  top: calc(var(--top-navbar-height, 75px) + var(--sidebar-top-gap, 10px));
  /* fallback to 56px if variable not set */
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Add left margin to main content to prevent it from being hidden behind the sidebar */
.main-body,
.main_container,
.my-container {
  /* /  margin-left: 200px; slightly more than sidebar width for spacing */
  transition: margin-left 0.2s;
}

.sidebarMenu nav {
  padding: 5px 0px;
  display: flex;
  justify-content: center;
}

.sidebarMenu nav ul {
  justify-content: center;
  width: 98%;
}

.sidebarMenu nav ul li a {
  padding-left: 2rem;
  /* margin: 10px 0px; */
}

.sidebarMenu nav ul li a.active {
  border-left: 5px solid var(--bluelevel01) !important;
  font-weight: bold;
  color: var(--priorityColor) !important;
  border-radius: 0px;
  padding-left: calc(2rem - 5px) !important;
}

.nav-tabs {
  border-bottom: 0px;
}

.taskMenu {
  margin-top: 65%;
}

.navList {
  margin-top: -8px;
}

.freelancerTaskMenu {
  margin-top: 120%;
}

.text-underline {
  text-decoration: underline !important;
}

.priorityText {
  color: var(--bluelevel01) !important;
}

.handHover {
  cursor: pointer;
}

/* .user_card:nth-child(odd),
.oneJobContainer:nth-child(odd) {
  background-color: #F1F6FF;
} */

.user_card {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--app-border-radius);
  padding: 1rem 0.5rem;
  margin: 5px 0px;
  padding-left: .5rem 1rem !important;
  overflow: hidden;
}

.oneJobContainer {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--app-border-radius);
  padding: 0.5rem 1rem;
  margin: 0.5rem 0px !important;
  padding-left: .5rem 1rem !important;
  overflow: hidden;
}

.clickable-job-card .job-title-hoverable {
  transition: text-decoration 0.2s;
  text-decoration: none;
  color: var(--bluelevel01);
}


.clickable-job-card.hovered-card {
  box-shadow: 0 4px 16px rgba(13, 52, 81, 0.12), 0 1.5px 6px rgba(13, 52, 81, 0.08);
  transform: translateY(-4px);
  transition: box-shadow 0.2s, transform 0.2s;
  z-index: 2;
}

.clickable-job-card.hovered-card .job-title-hoverable {
  text-decoration: underline;
  color: var(--bluelevel01);
}

#navbarDropdownMenuLink {
  color: #fff;
}

#profileIcon,
#navbarDropdownMenuLink {
  margin-right: 0px !important;
}

#navbarDropdownMenuLink::after {
  display: none;
}

.fixedButton {
  width: 185px;
  border-radius: 50px;
}

/* .oneJobContainer:nth-child(odd) {
  background-color: #F1F6FF;
} */

/* .jobTitle,
.skillsRow,
.descriptionRow,
.searchDescription,
.infoRow {
  margin: 0px 5px;
} */

.infoRow .leftColumn {
  color: var(--bluelevel01);
}

.skillsRow,
.skillsRow span {
  font-size: 0.9rem;
}

.oneSkillTag {
  margin: 0px 5px;
}

.jdShowButton,
.jdShowButton:hover {
  float: right;
  color: #000;
  text-decoration: underline !important;
  cursor: pointer;
}

.jobActionButton,
.jobActionButton:hover {
  color: white;
  cursor: pointer;
}

.jobStatus {
  margin: 0px 5px
}

.jobAction {
  margin-left: 10px;
}

.searchBar {
  background-color: #fff !important;
  transform: translateX(-10px);
  /* margin-top: 1rem; */
  /* border: 1px solid var(--border-color); */
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border: none;
  color: rgba(13, 52, 81, 1);
  padding-right: 0px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
  border: none;
  color: #292b2c;
}

/* Common sidebar */
.sidebarMenuModal {
  min-height: 30vh;
  max-width: 25%;
  height: auto !important;
  background-color: rgba(226, 237, 255, 1);
  /* margin-left: 5em; */
  /* max-width: 18%; */
  /* Full-height: remove this if you want "auto" height */
  position: sticky;
  /* Fixed Sidebar (stay in place on scroll) */
  top: calc(55px + 1rem);
  /* Stay at the top */
}

.popup form label {
  font-weight: bold;
  white-space: nowrap;
}

.userNameHeader {
  margin: 0px 10px;
}

.dropdown-toggle {
  border: none;
}

.closebtn {
  display: none;
  font-size: 1.5rem;
  margin-top: -6px;
}

.modifystyle div .closebtn {
  display: block;
}

.closebtn i {
  color: var(--bluelevel01)
}

.hamburger-menu {
  font-size: 15px;
  cursor: pointer;
  float: right;
  align-self: center;
  display: none;
  color: var(--bluelevel01)
}

/* input[type="text"]::placeholder{
  color: #fff;
  opacity: 0;
} */

.list-group {
  max-height: 25vh !important;
  overflow-y: scroll !important;
}

.ModalHeader {
  justify-content: left !important;
}

/* .commonPageSideBar {
  min-height: 89vh !important;
} */

.g-recaptcha {
  margin-bottom: 0.5rem;
  margin-top: 40px;
}

.g-recaptcha div {
  margin: 0px auto;
}

/* FAQ */
.faq-header {
  font-size: 29px;
  border-bottom: 1px dotted #ccc;
  padding: 24px;
  color: var(--bluelevel01)
}

.faq-content {
  margin: 0 auto;
  color: var(--bluelevel01)
}

.faq-question {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
  color: var(--bluelevel01)
}

.panel-title {
  font-size: 20px;
  width: 100%;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  align-self: center;
  cursor: pointer;
  color: var(--bluelevel01)
}

.panel-content {
  font-size: 20px;
  padding: 0px 14px;
  margin: 0 20px;
  height: 0;
  overflow: hidden;
  z-index: 1;
  position: relative;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
  color: var(--bluelevel01)
}

.panel:checked~.panel-content {
  height: auto;
  opacity: 1;
  padding: 14px;
  color: var(--bluelevel01);
  z-index: 10;
  pointer-events: auto;
}

.panel:checked~.panel-content a {
  pointer-events: auto !important;
  z-index: 11 !important;
  position: relative !important;
}

.plus {
  font-size: 20px;
  line-height: 100%;
  margin: 0px 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  color: var(--bluelevel01)
}

.panel:checked~.plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  color: var(--bluelevel01)
}

.panel {
  display: none;
  color: var(--bluelevel01)
}

/* FAQ Links Styling */
.faq-content a,
.faq-content p a,
.panel-content a,
.panel-content p a {
  color: #0d3451 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
  display: inline !important;
  position: relative !important;
  z-index: 10 !important;
  pointer-events: auto !important;
}

.faq-content a:hover,
.faq-content p a:hover,
.panel-content a:hover,
.panel-content p a:hover {
  color: #1e4a6b !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  font-weight: 600;
}

.faq-content a:visited,
.faq-content p a:visited,
.panel-content a:visited,
.panel-content p a:visited {
  color: #0d3451 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
}

.faq-content a:active,
.faq-content p a:active,
.panel-content a:active,
.panel-content p a:active {
  color: #0a2a3f !important;
  text-decoration: underline !important;
  cursor: pointer !important;
}

/* Email links specific styling */
.faq-content a[href^="mailto:"],
.faq-content p a[href^="mailto:"],
.panel-content a[href^="mailto:"],
.panel-content p a[href^="mailto:"] {
  color: #0d3451 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  display: inline !important;
  position: relative !important;
  z-index: 10 !important;
  pointer-events: auto !important;
}

.faq-content a[href^="mailto:"]:hover,
.faq-content p a[href^="mailto:"]:hover,
.panel-content a[href^="mailto:"]:hover,
.panel-content p a[href^="mailto:"]:hover {
  color: #1e4a6b !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  font-weight: 600;
}

/* External links styling */
.faq-content a[href^="http"],
.faq-content p a[href^="http"],
.panel-content a[href^="http"],
.panel-content p a[href^="http"] {
  color: #0d3451 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  display: inline !important;
  position: relative !important;
  z-index: 10 !important;
  pointer-events: auto !important;
}

.faq-content a[href^="http"]:hover,
.faq-content p a[href^="http"]:hover,
.panel-content a[href^="http"]:hover,
.panel-content p a[href^="http"]:hover {
  color: #1e4a6b !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  font-weight: 600;
}

/* Terms and Privacy Policy Links Styling */
.terms-content a,
.privacy-content a {
  color: #0d3451 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.terms-content a:hover,
.privacy-content a:hover {
  color: #1e4a6b !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  font-weight: 600;
}

.terms-content a:visited,
.privacy-content a:visited {
  color: #0d3451 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
}

.terms-content a:active,
.privacy-content a:active {
  color: #0a2a3f !important;
  text-decoration: underline !important;
  cursor: pointer !important;
}

/* Email links in Terms and Privacy */
.terms-content a[href^="mailto:"],
.privacy-content a[href^="mailto:"] {
  color: #0d3451 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
}

.terms-content a[href^="mailto:"]:hover,
.privacy-content a[href^="mailto:"]:hover {
  color: #1e4a6b !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  font-weight: 600;
}

/* External links in Terms and Privacy */
.terms-content a[href^="http"],
.privacy-content a[href^="http"] {
  color: #0d3451 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
}

.terms-content a[href^="http"]:hover,
.privacy-content a[href^="http"]:hover {
  color: #1e4a6b !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  font-weight: 600;
}

.navContainer {
  padding: 0px 15px;
}

.existing {
  margin-bottom: 1em;
}

.googleContainer {
  height: 100%;
  width: 100%;
  padding: 15px 0px;
}

.containerHeader {
  width: 100%;
  block-size: fit-content;
  word-wrap: break-word;
  text-align: center;
  margin-bottom: 0px;
  padding: 0px 10px;
  background: white;
  color: rgb(13, 52, 81);
}

.showMobile {
  display: none;
}

.nonMobile {
  display: block;
}

.searchBox {
  background-color: transparent;
  border: none;
  padding-left: 1.5rem;
}

.searchBox i{
  color: var(--bluelevel01);
  font-size: 1.5rem;
}

.fa-search {
  color: #fff;
}

.searchBarTitle {
  padding-top: 15px;
  padding-left: 15px;
}

.tab-content,
.results {
  margin-top: 0.5rem;
}

.jobAction a{
  color: white;
}

.notificationClose {
  display: none;
}

.oneJobContainer:hover .notificationClose {
  display: block;
}

.alert-danger,
.alert-success,
.alert-warning,
.alert-info {
  background: none;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 3rem 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  background-color: #f8f9fa;
  border-left: 4px solid;
}

.alert-danger,
.alert-warning {
  color: #721c24;
  background-color: #f8d7da;
  border-left-color: #dc3545;
}

.alert-success,
.alert-info {
  color: #0f5132;
  background-color: #d1e7dd;
  border-left-color: #198754;
}

.alert .alert-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1rem;
  color: inherit;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.alert .alert-close:hover {
  opacity: 1;
}

.alert .alert-close:focus {
  outline: none;
  opacity: 1;
}

.showMoreATag {
  margin-left: 1.5rem;
}

.subContainer {
  width: 100%;
  display: flex;
}

.bottomButtonSameRow {
  display: flex;
  justify-content: center;
}

.btnstyle{
  min-height: 30px;
  min-width: 150px;
  background-color: var(--bluelevel01);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.secondarybtnstyle,
.secondarybtnstyle:hover {
  border-radius: 5px !important;
  background-color: #fff !important;
  margin: 5px auto;
  color: var(--bluelevel01);
  border: 1px solid var(--bluelevel01);
  font-weight: 500;
  min-width: 150px;
  min-height: 30px;
}

.secondarybtnstyle:hover {
  font-weight: bold;
  color: var(--bluelevel01);
}

.badge {
  background-color: rgba(226, 237, 255, 0.65) !important;
  color: #0D3451 !important;
  font-size: 0.75rem !important;
  padding: 0.2rem 0.5rem !important;
  margin: 0rem 0.2rem !important;
  text-transform: capitalize;
}

.secondaryBadge {
  background-color: transparent;
  color: var(--bluelevel01);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 5px;
  padding: 0.5rem 1rem;
}

.text-capitalize:first-letter {
  text-transform: uppercase;
}

.commonPageRightSide{
  border: 1px solid #dfdfdf;
  margin-left: 1rem;
}

.timestamp-border {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background-color: #fff;
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.2;
}

.brand-logo{
  height: 30px;
  width: 140px;
}

.main-container{
  background-color: transparent;
  padding: 0px 0px;
}

.commonPageRightSide, .right-side, .rightside{
  background-color: #fff;
}

@media only screen and (min-width: 1920px) {
  .commonPageSideBar {
    min-height: 92vh !important;
  }
}

@media only screen and (max-width: 996px) {
  .navbar-nav li a {
    font-size: 1.05rem;
    padding: 0;
  }

  .companyBrand img {
    margin-top: 0;
    margin-left: 5px;
  }

  .navbarItem {
    width: auto;
  }

  .dropdown-item {
    padding: 5px 10px !important;
  }

  .sidebarMenuModal {
    display: none;
  }

  .hideAtTab {
    display: none;
  }
}

@media only screen and (max-width: 768px) {

  .mobilePx{
    padding: 0px 15px !important;
  }

  .commonPageRightSide{
    border: none;
    margin-left: 0rem;
  }

  #dropdownNotification .dropdown-item {
    padding-left: 15px !important;
  }

  .showMoreATag {
    margin-left: 1rem;
  }

  .clientJob {
    width: 55%;
  }

  .navbar-nav,
  .navbarItem {
    position: relative;
    width: 95% !important;
    background-color: var(--bluelevel01);
    height: auto;
    padding-bottom: 1rem;
  }

  .bottomButtons div {
    width: 50%;
  }

  .common_forms {
    width: 100% !important;
  }

  .right-side {
    margin-left: 0rem;
  }

  .navContainer {
    padding: 0rem !important;
    height: 35px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end !important;
  }

  .collapsibleNavbar {
    width: 100%;
    position: absolute;
    margin-left: 0px;
    left: 0px;
    top: calc(var(--top-navbar-height) - 4px);
  }

  .collapsibleNavbar .navbar-nav {
    width: 100% !important;
  }

  .activedTab,
  .activedTab a {
    background-color: rgba(13, 52, 81, 1);
    color: #FFFFFF;
  }

  .navbarItem .dropdown-menu {
    background-color: var(--bluelevel01);
  }

  .navbarItem .dropdown-menu .dropdown-item {
    color: #FFFFFF;
    margin-top: 1.5px !important;
    margin-bottom: 1.5px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .navbar-nav .dropdown-menu {
    margin: 0;
    padding-left: 0px;
    padding-top: 0px;
    width: calc(100% + 30px);
    border: 0px;
    box-shadow: none;
    float: none;
  }

  .showMobile {
    display: block;
  }

  .nonMobile {
    display: none !important;
  }

  .moboContentCenter {
    justify-content: center;
    font-size: 1.2rem;
  }

  .fa-bars::before {
    content: "\f0c9";
    font-size: 2.3rem;
  }

  .fa-times::before {
    font-size: 2rem;
    /* color: #fff; */
  }

  .fa-ellipsis-v::before {
    font-size: 2.5rem;
    color: #fff;
  }

  .headerButtons {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
  }

  .headerButtons a,
  .headerButtons a button {
    width: fit-content;
  }

  .buttons input,
  .buttons-print {
    background: var(--bluelevel01) !important;
    font-size: 0.9rem;
  }

  .bootstrap-select .btn {
    background: white !important;
  }

  .navbar-nav li a {
    padding: 10px 5px !important;
    align-self: center;
  }

  .sidebarMenu {
    min-width: 150px;
    width: 150px;
    min-height: auto !important;
  }

  .searchBar {
    margin-bottom: 0rem !important;
    background-color: #fff;
    border: none;
    /* margin-top: 1rem !important; */
    height: auto !important;
  }

  .fa-search {
    font-size: 1.5rem;
  }

  .search-header {
    display: none;
  }

  .taskMenu {
    margin-top: 15%;
  }

  .freelancerTaskMenu {
    margin-top: 20%;
  }

  input[type="text"]::placeholder {
    color: var(--bluelevel01);
    opacity: 1;
  }

  input[type="text"]:-ms-input-placeholder {
    color: var(--bluelevel01);
    opacity: 1;
  }

  input[type="text"]::-ms-input-placeholder {
    color: var(--bluelevel01);
    opacity: 1;
  }

  #collapsibleNavbar .navbar-nav .nav-link,
  #collapsibleNavbar .navbar-nav .nav-item {
    margin-top: 1.5px !important;
    margin-bottom: 1.5px !important;
    padding-top: 1.5px !important;
    padding-bottom: 1.5px !important;
  }

  .nav-tabs .nav-item .nav-link {
    font-weight: normal;
    /* color: #B2B1B1; */
    color: var(--bluelevel01);
  }

  .nav-tabs .nav-item .active {
    font-weight: lighter;
    color: var(--bluelevel01);
    text-decoration: none !important;
  }

  .inputWithSearchWidth {
    width: 100% !important;
    margin-left: 0px !important;
  }

  .inputWithSearch {
    border-radius: 5px !important;
  }

  #searchForm {
    justify-content: center !important;
  }

  .searchBox {
    background-color: #fff;
    border: none;
    padding: 0.3rem .5rem;
    margin: 0rem .2rem;
  }

  .searchBoxDiv {
    position: absolute;
    float: right;
    right: 0;
    align-self: center;
  }

  .sidebarMenu nav ul li a.active {
    padding-left: calc(2em - 5px);
  }

  .dropdown-menu {
    padding-left: 10px;
  }

  .main-content {
    margin-left: auto !important;
  }

  .hamburger-menu {
    display: none;
  }

  .sidebarMenu {
    top: 0;
    right: 15px;
    position: absolute;
    z-index: 1;
    display: block;
    min-height: 100%;
  }

  .offerstyle {
    margin-top: auto !important;
  }

  #offer_type,
  #offer_typeInvite,
  #offer_type_modify {
    width: 25% !important;
  }

  .onPostContainer {
    padding: 0;
  }

  .onePost {
    margin: 0px !important;
    width: 100% !important
  }

  .modal-dialog {
    width: auto !important;
  }

  /* My Tutors */
  .alignPadding {
    padding-left: 0px;
    padding-right: 0px;
  }

  .ModalHeader h4 {
    font-size: 1rem !important;
  }

  .remove-ml {
    margin-left: 0px !important;
  }

  .remove-pl {
    padding-left: 0px !important;
  }

  .remove-px {
    padding: 0px 15px;
  }

  .remove-px-0 {
    padding: 0px;
  }

  .content-top {
    margin-top: 1rem !important;
  }

  .list-group {
    min-width: 250px !important;
    max-height: 20vh !important;
    overflow: hidden;
  }

  .tab-content {
    margin-top: 0.5rem;
  }

  .subContainer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .headerButtons {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
  }

  .companyBrand {
    display: flex;
    align-items: center;
    margin-left: 10px;
  }

}

@media only screen and (max-width: 596px) {
  * {
    font-size: 11px;
  }

  .moreOptions,
  .moreOptions a {
    background-color: var(--bluelevel01);
    color: #fff;
  }

  .infoRow div {
    text-align: left !important;
    padding-left: 0px !important;
    padding-top: 0px !important;
  }

  .input-group::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--bluelevel01);
    opacity: 1;
    /* Firefox */
  }

  .input-group:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--bluelevel01);
  }

  .input-group::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--bluelevel01);
  }

  .form-control {
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    /* border: none; */
    border-radius: 5px !important;
  }

  .form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--bluelevel01);
    opacity: 1;
    /* Firefox */
  }

  .user_card,
  .oneJobContainer {
    border: 1px solid var(--bluelevel01);
    color: var(--bluelevel01) !important;
    margin-bottom: 0.5rem !important;
    margin-top: 0rem !important;
  }

  .oneJobContainer .infoRow .leftColumn,
  .oneJobContainer .infoRow .text-right {
    color: var(--bluelevel01) !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .jobActionButton,
  .jobActionButton:hover {
    color: white;
    cursor: pointer;
  }

  .jdShowButton {
    color: var(--bluelevel01);
  }

  /* .user_card:nth-child(odd),
  .oneJobContainer:nth-child(odd) {
    background-color: #fff;
  } */

  .jobAction {
    padding-left: 0px;
    margin-left: 0px;
    padding-right: 10px;
  }

  .priorityText {
    color: var(--bluelevel01) !important;
  }

  #module .readMore.collapse:not(.show) {
    display: block;
    height: 4.7rem;
    overflow: hidden;
  }

  #module .readMore.collapsing {
    height: 4.7rem !important;
  }

  .headerText {
    color: var(--bluelevel01) !important;
  }

  .closebtn {
    display: block !important;
  }

  .modal-content {
    margin-top: 5.5rem !important;
  }

  .header {
    font-size: 1.2rem;
  }

  .footer {
    display: none;
  }

  .bottomButtonSameRow .col {
    width: 50%;
  }

  .container-fluid {
    margin-top: 0rem !important;
    font-weight: normal;
  }

  .card {
    padding-top: 0rem;
  }

  .searchBarTitle {
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 0.5rem;
  }

  b,
  strong {
    font-size: 1rem;
  }

  .navbar {
    padding-top: 0.5rem;
  }

  .Mobilefont-weight-bold {
    font-weight: bold !important;
  }

  .main-content {
    margin-top: 0.5rem !important;
  }

  #form_search h4 {
    margin-bottom: 0.5rem !important;
  }

  .description {
    margin: 0.5rem 0rem;
    padding: 0rem;
  }

  input[type="text"],
  input[type="password"],
  input[type="email"] {
    border-radius: 0.25rem !important;
  }

  .paginationjs .paginationjs-pages li>a {
    font-size: 1rem;
    color: rgba(13, 52, 81, 1);
    border: 1px solid rgba(226, 237, 255);
    min-width: 30px;
    height: 30px;
    line-height: 22px;
  }

  .paginationjs .paginationjs-pages li.active>a,
  .pagination .page {
    min-width: 30px;
    height: 32px;
    line-height: 30px;
  }

  .paginationjs .paginationjs-pages li.disabled>a {
    font-size: 1.25rem !important;
  }

  .paginationjs-prev,
  .paginationjs-next {
    font-size: 1.25rem !important;
  }

  .paginationjs .paginationjs-pages li>a,
  .pagination .page {
    min-width: 30px;
    height: 32px;
    line-height: 30px;
    font-size: 1rem !important;
  }

  .jobAction {
    padding-right: 5px;
    color: var(--bluelevel01) !important;
  }

  .jobAction a {
    color: var(--bluelevel01) !important;
  }

  .userType {
    width: 100%;
    text-align: center;
    float: right;
    justify-content: center;
    display: flex;
    align-self: center;
    margin-right: 1rem;
  }

  .subContainer {
    width: 100%;
    display: flex;
  }

  .companyBrand,
  .navContainer {
    width: 100%;
  }

  .userType h5 {
    margin: 0rem;
  }

  .companyBrand {
    display: flex;
  }

  .moboNavTabItems {
    text-align: center;
    padding: 0px 0.5rem !important;
  }

  .descriptionRow,
  .searchDescription {
    border-top: 1px solid rgba(13, 52, 81, 0.25);
    border-bottom: 1px solid rgba(13, 52, 81, 0.25);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }

  /* .infoRow {
    margin-top: 0rem !important;
  } */

  nav.navbar .notification:after {
    width: 10px;
    height: 10px;
    right: -9px;
    top: -4px;
  }

  nav.navbar #dropdownNotification .notification::after {
    left: 0px;
    top: 0px;
  }

  nav.navbar .notification:hover {
    background-color: var(--bluelevel01);
  }

  .notificationClose::before {
    font-size: 1.5rem;
  }

  a {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently  */
  }

}

@media only screen and (max-width: 350px) {
  #notDynamic .col-sm-12 {
    margin: 0rem !important;
    margin-top: 1.5rem !important;
    padding: 0px !important;
  }

  b,
  strong {
    font-size: 1rem;
  }

  .moboContentCenter h4 {
    font-size: 1.3rem;
  }

  .moboNavTabItems {
    padding: 0px 0rem !important;
  }

  .NoMoboPx-0 {
    padding-right: 0px;
  }
}

/* Tablet-specific fixes for profile sidebar alignment */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* Hide sidebar navigation on tablet - same as mobile */
  .profileContainer .sidebarMenu {
    display: none !important;
  }
  
  /* Hide the sidebar column completely */
  .profileContainer .col-sm-2 {
    display: none !important;
  }
  
  /* Make main content take full width */
  .profileContainer .col-sm-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  /* Show mobile dropdown on tablet */
  .profileContainer .d-block.d-sm-none {
    display: block !important;
    margin-bottom: 1rem;
  }
  
  /* Ensure proper spacing */
  .profileContainer .rightside {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Adjust container spacing */
  .profileContainer .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Ensure proper card layout */
  .profileContainer .card {
    margin: 0;
    border-radius: 8px;
  }
}

/* Additional tablet-specific fixes for better responsiveness */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* Hide sidebar on tablet - same as mobile behavior */
  .profileContainer .sidebarMenu {
    display: none !important;
  }
  
  .profileContainer .col-sm-2 {
    display: none !important;
  }
  
  .profileContainer .col-sm-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  /* Show mobile dropdown */
  .profileContainer .d-block.d-sm-none {
    display: block !important;
    margin-bottom: 1rem;
  }
  
  /* Ensure proper row behavior */
  .profileContainer .row {
    display: block;
  }
}

/* Specific fixes for medium tablets (768px - 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* Consistent with hiding sidebar on tablet */
  .profileContainer .sidebarMenu {
    display: none !important;
  }
  
  .profileContainer .col-sm-2 {
    display: none !important;
  }
  
  .profileContainer .col-sm-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  /* Show mobile dropdown */
  .profileContainer .d-block.d-sm-none {
    display: block !important;
    margin-bottom: 1rem;
  }
}

/* ===== Custom Sidebar Modern White Theme (Monochrome #0d3451) ===== */
.customSidebarMenu {
  background: var(--white);
  border-radius: 1.125rem;
  border: 0.1rem solid #b1b1b1  !important;
  min-width: 14.375rem;
  max-width: 15.625rem;
  width: auto;
  box-shadow: 0 0.125rem 1rem 0 #0d34510d;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: sticky;
  top: calc(var(--top-navbar-height) + var(--sidebar-top-gap));
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: var(--sidebar-top-gap);
  height: auto;
  padding-top: 0.625rem;
}

.custom-sidebar-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 0 1.25rem 0;
}

.custom-sidebar-logo {
  font-size: 2.5rem;
  color: var(--bluelevel01);
  margin-bottom: 0.75rem;
}

.custom-sidebar-title {
  font-weight: 800;
  font-size: 1.20rem;
  color: var(--bluelevel01);
  text-align: center;
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
}

.customSidebarMenu .custom-closebtn {
  display: none;
}

.customSidebarMenu .custom-navList {
  padding: 0;
  margin: 0;
  margin-top: 1.125rem;
}

.customSidebarMenu .custom-nav-tabs {
  border: none;
  padding: 0 0 1.125rem 0;
  gap: 0;
}

.customSidebarMenu .custom-nav-item {
  border-radius: 0 0.75rem 0.75rem 0;
  margin: 0;
  padding: 0;
}

.customSidebarMenu .custom-nav-link {
  display: flex;
  align-items: center;
  padding: 0.8125rem 1rem 0.8125rem 2rem;
  font-size: 1.07rem;
  font-weight: 500;
  color: var(--bluelevel01);
  border: none;
  background: none;
  transition: background 0.12s, color 0.12s;
  border-radius: 0 0.75rem 0.75rem 0;
  margin: 0;
  position: relative;
  min-height: 2.8125rem;
}

.customSidebarMenu .custom-nav-link .custom-sidebar-icon {
  font-size: 1.14rem;
  margin-right: 0.625rem;
  color: var(--bluelevel01);
}

.customSidebarMenu .custom-nav-link .custom-sidebar-text {
  flex: 1;
  color: inherit;
  font-size: 1rem;
}

.customSidebarMenu .custom-nav-link:not(.active):hover {
  color: var(--bluelevel01);
}

.customSidebarMenu .custom-nav-link.active {
  background: #0d34511a;
  color: var(--bluelevel01) !important;
  font-weight: 700;
}

.customSidebarMenu .custom-nav-link.active .custom-sidebar-icon {
  color: var(--bluelevel01);
}

.customSidebarMenu .custom-nav-link.active::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0.375rem;
  bottom: 0.375rem;
  width: 0.3125rem;
  border-radius: 0.375rem;
  background: var(--bluelevel01);
}

.customSidebarMenu .custom-nav-link:not(.active) .custom-sidebar-icon {
  color: #0d345166;
}

.customSidebarMenu .custom-nav-link:not(.active) .custom-sidebar-text {
  font-weight: 400;
}

.customSidebarMenu .custom-nav-link .custom-sidebar-count {
  font-size: 0.98rem;
  color: var(--bluelevel01);
  font-weight: 500;
  margin-left: 0.4375rem;
  opacity: 0.8;
}

.customSidebarMenu .custom-nav-tabs .custom-nav-link,
.customSidebarMenu .custom-nav-tabs .custom-nav-link.active,
.customSidebarMenu .custom-nav-tabs .custom-nav-item.show .custom-nav-link {
  border: none !important;
  background: none !important;
}

.customSidebarMenu .custom-nav-tabs .custom-nav-item:last-child {
  margin-bottom: 0.5rem;
}

.customSidebarMenu {
  box-shadow: 0 0.125rem 0.875rem 0 #0d34510d;
  height: 35rem;
}


/* Hide sidebar on mobile only (not tablet) */
@media (max-width: 767px) {
  .customSidebarMenu {
      display: none !important;
  }
  .sidebarMenu {
      display: none !important;
  }
  .main-container {
      flex-direction: column !important;
  }
  .right-side {
      width: 100% !important;
      max-width: 100% !important;
  }
}

/* Hide sidebar on tablet - same as mobile behavior */
@media (min-width: 768px) and (max-width: 991px) {
  .customSidebarMenu {
      display: none !important;
  }
  .sidebarMenu {
      display: none !important;
  }
  .main-container {
      flex-direction: column !important;
  }
  .right-side {
      width: 100% !important;
      max-width: 100% !important;
      margin-left: 0;
  }
  /* Show mobile navigation on tablet */
  .showMobile {
      display: block !important;
  }
}

@media (min-width: 992px) {
  .main-container {
      flex-direction: row !important;
  }
  .customSidebarMenu {
      display: flex !important;
      min-width: 13rem;
      max-width: 13rem;
  }
  /* .right-side {
      width: 100% !important;
      margin-left: 0;
  } */
}

/* Popup alert styling */
.popup-alert-base {
    position: fixed;
    top: 32px;
    right: 28px;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    padding: 1rem 2.5rem 1rem 1.25rem;
    border-radius: 12px;
    border-left: 6px solid #007bff;
    min-width: 260px;
    max-width: 400px;
    width: auto;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    word-break: break-word;
}

/* Popup alert types */
.popup-success {
    border-left-color: #28a745;
}

.popup-success .popup-icon {
    color: #28a745;
}

.popup-error {
    border-left-color: #dc3545;
}

.popup-error .popup-icon {
    color: #dc3545;
}

.popup-warn {
    border-left-color: #ffc107;
}

.popup-warn .popup-icon {
    color: #ffc107;
}

.popup-info {
    border-left-color: #007bff;
}

.popup-info .popup-icon {
    color: #007bff;
}

.popup-icon {
    font-size: 1.4rem;
    margin-right: 0.85rem;
}

.popup-message {
    flex: 1;
}

.popup-close-btn {
    background: transparent !important;
    border: none;
    color: #666;
    font-size: 1.3rem;
    margin-left: 12px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    border-radius: 0;
}

.popup-close-btn:hover {
    background: transparent !important;
    color: #333;
}

.popup-close-btn:focus {
    background: transparent !important;
    outline: none;
}

/* Popup responsive styles */
@media (max-width: 600px) {
    .popup-alert-base {
        min-width: 0 !important;
        max-width: 95vw !important;
        width: 95vw !important;
        right: 2.5vw !important;
        left: auto !important;
        top: 16px !important;
        padding: 0.85rem 1.2rem 0.85rem 1rem !important;
        font-size: 0.98rem !important;
    }
}