/* Global Variables */

body {
  font-family: 'Inter', sans-serif !important;
}

@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .desktop-nav {
    display: none;
  }
}


/* Added by: John Carlo Tulin @ 07/04/25 */

h1 {
  font-size: 2.5rem;
}

/* 2.5 * 16 = 40px default */
h2 {
  font-size: 2rem;
}

/* 32px */
h3 {
  font-size: 1.75rem;
}

/* 28px */
h4 {
  font-size: 1.5rem;
}

/* 24px */
h5 {
  font-size: 1.25rem;
}

/* 20px */
h6 {
  font-size: 1rem;
}

/* 16px */


/* Navbar button
Added by: John Carlo Tulin @ 07/07/25 */

/* 1) Transparent hover for buttons & links in the main navbar
   Excludes .accessibility-toggle and .accessibility-option-btn */
#navbarSupportedContent button:not(.accessibility-toggle):not(.accessibility-option-btn):hover,
#navbarSupportedContent .nav-link:hover {
  background-color: transparent !important;
  color: #1cb423 !important;
  transition: color 0.4s ease-out, transform 0.4s ease-out;
  transform: translateY(-3px);
}


/* 2) Base styles for dropdown toggles inside main navbar
   (still excluding your accessibility controls) */
#navbarSupportedContent .dropdown-toggle:not(.accessibility-toggle):not(.accessibility-option-btn) {
  background-color: transparent !important;
  box-shadow: none !important;
  transition: color 0.4s ease-out, transform 0.4s ease-out;
}

/* 3) Hover/focus/show animation for those dropdown toggles */
#navbarSupportedContent .dropdown-toggle:not(.accessibility-toggle):not(.accessibility-option-btn):hover,
#navbarSupportedContent .dropdown-toggle:not(.accessibility-toggle):not(.accessibility-option-btn):focus,
#navbarSupportedContent .dropdown-toggle:not(.accessibility-toggle):not(.accessibility-option-btn).show {
  transform: translateY(-3px);
  color: #1cb423 !important;
}


a.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}


/* Search botton state */
.search-btn.disabled {

  pointer-events: none;
  background-color: rgb(137, 136, 136);
  border-color: rgb(137, 136, 136);
  cursor: not-allowed;

}

[ng-cloak] {
  display: none !important;
}

/* For the Matching percentage color*/
.bg-orange {
  background-color: #fd7e14 !important;
}

/* Code Migrated @ 04/07/2025 */

/********* Code ni Lorenzo *********/

/* Login/Register Modal */
/* modal global style */
.information-entry-modal a {

  color: black;
}

.modal-btn {

  background-color: #0f7414;
  color: white !important;
  border-radius: 10px;

}


/* Dark mode modal button */
.accessibility-dark .modal-btn {
  background-color: #000 !important;
  color: white !important;
  border: 1px solid white;
  border-radius: 10px;
}

.accessibility-dark #close-modal-button {
  background-color: #000 !important;
  color: white !important;
  border: 1px solid white;
  border-radius: 10px;
}

.modal-overlay {

  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 1050;
  /* Placed higher than the nav bar (1030) */
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out, visibility 0.4s ease-in-out;

}

.modal-overlay.active {

  opacity: 1;
  visibility: visible;

}

.modal-overlay.active-unmount {

  opacity: 0;
  visibility: hidden;

}


.modal-overlay .information-entry-modal {
  background-color: #fff;
  flex: 0 0 auto;
  position: relative;
  padding: 10px;
  border-radius: 20px;
  height: 90%;
  width: 70%;
  max-width: 500px;
  max-height: 800px;
  overflow: hidden;
  transform: translateY(50%);
  transition: transform 0.4s ease-in-out;
}

.accessibility-dark .information-entry-modal {
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}

.modal-overlay .information-entry-modal.active {

  transform: translateY(0%);

}

.information-entry-modal .close-btn {

  position: absolute;
  top: 10px;
  z-index: 10000;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #000;
  cursor: pointer;

}

.link-text {
  text-decoration: underline !important;
}

.form-control {

  border-radius: 20px !important;
  font-size: 1rem !important;

}

.form-control.password {

  border-radius: 20px 0 0 20px !important;

}

.toggle-visibility {

  border-radius: 0 20px 20px 0 !important;
  cursor: pointer;
}


/* All content styles */

.login-content,
.register-content,
.verify-content,
.confirm-user-type,
.forgot-pass,
.verify-forgot-pass-content,
.change-password-content {
  user-select: none !important;
  position: absolute;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}


/* Setting content state */

.login-content {
  transform: translateX(0);
}

.register-content,
.verify-content,
.confirm-user-type,
.forgot-pass,
.verify-forgot-pass-content,
.change-password-content {
  transform: translateX(100%);
  /* Hidden off-screen */
}

/* Active State */
.login-content.active-slide-out,
.register-content.active-slide-out,
.verify-content.active-slide-out,
.confirm-user-type.active-slide-out,
.forgot-pass.active-slide-out,
.verify-forgot-pass-content.active-slide-out,
.change-password-content.active-slide-out {
  transform: translateX(100%);
  /* Slide out to the left */
}


.register-content.active-slide-in,
.login-content.active-slide-in,
.verify-content.active-slide-in,
.confirm-user-type.active-slide-in,
.forgot-pass.active-slide-in,
.verify-forgot-pass-content.active-slide-in,
.change-password-content.active-slide-in {
  transform: translateX(0);
  /* Slide in from the right */
}




/* Within login-content */

.some-animation {

  background-color: gray;
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 30px;


}


/* Password input field */
.custom-width {

  max-width: 236px !important;

}


/* End of login-content */

/* Within Register-content */

/* Modified by Lorenzo @ 04/25/2025 */
.register-btn.disabled,
.change-pass-btn.disabled,
.verify-btn.disabled {


  pointer-events: none !important;
  background-color: rgb(137, 136, 136) !important;
  border-color: rgb(137, 136, 136) !important;
  cursor: not-allowed !important;
  user-select: none !important;

}

.subtitle-header {
  color: #0f7414 !important;
}

.navbar {
  background-color: white;
}

/* End of register-content */

/********* End of Code ni Lorenzo *********/

/* End of Code Migrated @ 04/07/2025 */



/* Accessibility Button
Added by: John Carlo Tulin @ 07/04/25*/


/* ------------------------------------
   1) Core dark‑mode: page background & text
--------------------------------------- */

.accessibility-dark {
  background-color: #000000;
  color: #ffffff !important;
}

.accessibility-dark a,
.accessibility-dark p,
.accessibility-dark h1,
h2,
h3,
h4,
h5,
h6,
.accessibility-dark small,
.accessibility-dark i,
.accessibility-dark .bi,
.accessibility-dark .fw-normal,
.accessibility-dark .fw-bold,
.accessibility-dark .text-black,
.accessibility-dark .text-secondary,
.accessibility-dark .text-white,
.accessibility-dark .text-muted,
.accessibility-dark .text-dark,
.accessibility-dark .link-dark {
  color: #fff !important;
}

.accessibility-dark input::placeholder,
.accessibility-dark textarea::placeholder {
  color: #e8e8e8 !important;
}

.accessibility-dark .card-body {
  background-color: #000 !important;
  background: #000 !important;
}

.accessibility-dark .card-header {
  background-color: #000 !important;
  background: #000 !important;
  border: 1px solid #fff;
}

/* Scrollbar */

.accessibility-dark::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.accessibility-dark::-webkit-scrollbar-track {
  background: #1e1e1e;
}

.accessibility-dark::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 10px;
  border: 2px solid #1e1e1e;
}

/* Firefox */
.accessibility-dark {
  scrollbar-width: thin;
  scrollbar-color: #555 #1e1e1e;
}


.accessibility-dark .tag,
.accessibility-dark .navbar-btn,
.accessibility-dark #createAnAccountBtn,
.accessibility-dark dropdown,
.accessibility-dark .btn,
.accessibility-dark .rounded,
.accessibility-dark .border,
.accessibility-dark .social-circle,
.accessibility-dark .form-control,
.accessibility-dark #show-login-modal,
.accessibility-dark #contactForm_PWD {
  background-color: #000 !important;
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #fff !important;
  /* white outline */
}

.accessibility-dark footer,
.accessibility-dark span,
.accessibility-dark #login-content,
.accessibility-dark .kickstart-hero-container {
  background: #000 !important;
  background-color: #000 !important;
  color: #fff !important;
}

.accessibility-dark nav {
  background: #000;
  background-color: #000;
  color: #fff;
}

.accessibility-dark .navbar {
  background: #000;
  background-color: #000;
  color: #fff;
}

/* === Reset SweetAlert2 error icon background and colors inside accessibility-dark === */

/* White background for the SweetAlert popup container */
.accessibility-dark .swal2-popup {
  background-color: #000000 !important;
  color: #fff !important;
  /* default text color white */
  border: none !important;
  /* optional: remove border */
}
.swal2-title {
    color: black !important;
}
/* White text color for the title */
.accessibility-dark .swal2-title {
  color: #fff !important;
}

/* White text color for the body text */
.accessibility-dark .swal2-html-container {
  color: #fff !important;
}

/* Keep error icon red circle with white X */
.accessibility-dark .swal2-icon.swal2-error {
  background-color: #f27474 !important;
  /* red circle */
  border-color: #f27474 !important;
  color: #fff !important;
  filter: none !important;
}

/* White “X” lines inside the error icon */
.accessibility-dark .swal2-icon.swal2-error [class^="swal2-x-mark-line"] {
  background-color: #fff !important;
}

/* Keep success icon green circle with white checkmark */
.accessibility-dark .swal2-icon.swal2-success {
  background-color: #a5dc86 !important;
  /* green circle */
  border-color: #a5dc86 !important;
  color: #fff !important;
  filter: none !important;
}

/* White checkmark lines inside the success icon */
.accessibility-dark .swal2-icon.swal2-success .swal2-success-line-tip,
.accessibility-dark .swal2-icon.swal2-success .swal2-success-line-long {
  background-color: #fff !important;
  border: none !important;
  opacity: 1 !important;
}


/* Remove filters or overrides on all SweetAlert icons */
.accessibility-dark .swal2-icon * {
  filter: none !important;
  color: initial !important;
  fill: initial !important;
  stroke: initial !important;
  background: none !important;
}


.accessibility-dark .btn-close {
  --bs-btn-close-color: #fff !important;
}

.accessibility-dark .create-account-banner {
  background: #000 !important;
  background-color: #000 !important;
  border-top: 1px solid #fff;
}

/* Dark mode for navbar dropdown */
.accessibility-dark .dropdown-menu {
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid #fff
}

.accessibility-dark .dropdown-menu .dropdown-item {
  background-color: transparent !important;
  color: #fff !important;
}

.accessibility-dark .dropdown-menu .dropdown-item:hover,
.accessibility-dark .dropdown-menu .dropdown-item:focus {
  background-color: #222 !important;
  color: #fff !important;
}

/* Also apply to nav button */
.accessibility-dark .nav-link,
.accessibility-dark .nav-link.dropdown-toggle {
  color: #fff !important;
}

/* ------------------------------------
   2) Dark‑mode for your widget UI
--------------------------------------- */
.accessibility-dark .accessibility-toggle {
  background-color: #000;
  /* darker button */
  color: #fff;
  /* invert icon color */
  border: 1px solid #fff;
  /* white outline */
}

.accessibility-dark .accessibility-panel {
  background-color: #000;
  /* darker panel */
  color: #fff;
  /* white labels/text */
  border: 1px solid #fff;
  /* white outline */
}

.accessibility-dark .accessibility-panel .option-group button {
  background-color: #000;
  /* button bg */
  color: #fff;
  /* button text */
  border: 1px solid #fff;
  /* white outline */
}

.accessibility-dark .accessibility-panel .option-group button.active {
  background-color: #fff;
  /* invert for “active” */
  color: #000;
}

.accessibility-dark,
.accessibility-dark .accessibility-toggle,
.accessibility-dark .accessibility-panel,
.accessibility-dark .accessibility-panel .option-group button,
.accessibility-dark .accessibility-panel .option-group button.active {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}


.accessibility-dark .modal-content {
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid #fff;
}

.accessibility-dark .modal-header,
.accessibility-dark .modal-body {
  border-color: #fff;
}

.accessibility-dark .modal-title {
  color: #fff !important;
}

.accessibility-dark .btn-close {
  filter: invert(1);
  /* white close icon */
}

.accessibility-dark .small,
.accessibility-dark p,
.accessibility-dark h6,
.accessibility-dark span,
.accessibility-dark strong {
  color: #fff !important;
}

.accessibility-dark .badge.bg-danger,
.accessibility-dark .badge.bg-success {
  color: #fff !important;
}

.accessibility-dark .border-success {
  border-color: #198754 !important;
}

.accessibility-dyslexia {
  font-family: 'Lexend', sans-serif !important;
}

/* Low Saturation */

.accessibility-low-saturation {
  position: relative;
  /* establish stacking context for the pseudo */
}

.accessibility-low-saturation .btn {
  /*background: linear-gradient(241deg, #6EBD6F 0%, #486946 100%);background: linear-gradient(241deg, #6EBD6F 0%, #486946 100%) !important;*/
  transition: background 0.3s ease;
  /* Ensures smooth animation */
}

/* 2) …and add a ::before that sits under your nav but over the content */
.accessibility-low-saturation::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  backdrop-filter: saturate(50%);
  -webkit-backdrop-filter: saturate(50%);
  z-index: 1;
  /* layer just above content */
}

/* High Saturation */

/* Establish a stacking context on the root element */
.accessibility-high-saturation {
  position: relative;
}

.accessibility-high-saturation .btn {
  /*background: linear-gradient(241deg, #00FF22 0%, #007F00 100%) !important;*/
  transition: background 0.3s ease;
  /* Ensures smooth animation */
}

/* Full‑page overlay that boosts saturation behind it */
.accessibility-high-saturation::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* let clicks pass through */
  backdrop-filter: saturate(150%);
  /* or whatever “high” value you prefer */
  -webkit-backdrop-filter: saturate(150%);
  z-index: 1;
  /* just above your content */
}

/* Invert contrast */

/* Establish stacking context on the root wrapper */
.accessibility-invert-contrast {
  position: relative;
}


.accessibility-invert-contrast .navbar {
  background: black !important;
}

.accessibility-invert-contrast.accessibility-dark .navbar {
  background: white !important;
}

/* Mobile Modal Landing Page */
.accessibility-invert-contrast .modal-content {
  filter: invert(100%) hue-rotate(0deg);
}

.accessibility-invert-contrast.accessibility-dark nav {
  background: transparent !important;
}

.accessibility-invert-contrast .navbar .text-black,
.accessibility-invert-contrast .navbar .dropdown-menu {
  background-color: black !important;
  color: white !important;
}

.accessibility-invert-contrast.accessibility-dark .navbar .text-black,
.accessibility-invert-contrast.accessibility-dark .navbar .dropdown-menu {
  background-color: rgb(255, 255, 255) !important;
  color: rgb(0, 0, 0) !important;
}

.accessibility-invert-contrast .navbar .btn {
  background: black !important;
  border: 1px solid #F08BEB !important;
  color: #F08BEB !important;
}

.accessibility-invert-contrast.accessibility-dark .navbar .btn {
  background: rgb(255, 255, 255) !important;
  border: 1px solid #000000 !important;
  color: #000000 !important;
}

.accessibility-invert-contrast #createAnAccountBtn {
  background: black !important;
  color: #F08BEB !important;
  border: 1px solid #F08BEB !important;
}

.accessibility-invert-contrast.accessibility-dark #createAnAccountBtn {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #000 !important;
}



/* Pseudo‑element overlay to invert everything behind it */
.accessibility-invert-contrast::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  backdrop-filter: invert(100%);
  -webkit-backdrop-filter: invert(100%);
  z-index: 1;
}

.accessibility-invert-contrast img {
  filter: invert(100%) hue-rotate(180deg);
}

.accessibility-invert-contrast .modal-logo {
  filter: hue-rotate(0deg) !important;
}

.accessibility-invert-contrast .rounded-pill,
.accessibility-invert-contrast .card-title,
.accessibility-invert-contrast .card-text {
  filter: invert(100%) !important;
}

.accessibility-invert-contrast .background-lottie.bg-gradient {
  filter: invert(100%) hue-rotate(0deg);
}

.accessibility-invert-contrast .invert-safe {
  filter: invert();
  position: relative;
  z-index: 10;
}

.invert-image {
  filter: invert(100%) !important;
}

/* Toggle Attribute */
/* Push your chrome (nav/header/buttons) above that overlay */
header,
.navbar,
.accessibility-toggle,
.accessibility-panel {
  position: relative;
  z-index: 10;
}

/* Widget UI */
.accessibility-toggle {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-color: #2eaa42;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: none;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  /* Drag animations */
  transition:
    left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.1s ease;
}

.accessibility-toggle.dragging {
  transition: none;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(46, 170, 66, 0.4);
}

.accessibility-toggle img {
  width: 30px;
  height: 30px;
}


/* Panel slide-in animation */
@keyframes panelSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* Button hover animations */
.accessibility-toggle:hover {
  transform: translateY(-50%) scale(1.05);
  transition: transform 0.2s ease;
}

.accessibility-toggle:active {
  transform: translateY(-50%) scale(0.95);
}

.label {
  font-weight: bold;
  margin-bottom: 5px;
}

.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-group button {
  padding: 6px 12px;
  border-radius: 999px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  background-color: white;
  color: black;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease;
}

/* Button hover effect */
.option-group button:hover {
  transform: translateY(-1px);
}

.option-group button:active {
  transform: translateY(0);
}

.option-group:not(.font-size) button.active {
  background-color: black;
  color: white;
  animation: buttonActivate 0.2s ease;
}

/* Button activation animation */
@keyframes buttonActivate {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Smooth transitions for all elements */
body,
.accessibility-toggle,
.accessibility-panel,
.accessibility-panel .option-group button,
.accessibility-panel .option-group button.active {
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease;
}

/* Drag indicator */
.accessibility-toggle::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.accessibility-toggle.dragging::after {
  border-color: rgba(46, 170, 66, 0.3);
  animation: dragPulse 1s infinite;
}

@keyframes dragPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

#accessibility-wrapper {
  margin: 40px;
  padding: 20px;
  border: 1px solid #ccc;
}

/* Accessibility Panel Attributes */
.accessibility-panel {
  font-size: 16px !important;
  position: fixed;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  background-color: #138808;
  color: white;
  border-radius: 20px;
  padding: 20px;
  z-index: 9999;
  width: 260px;
  display: none;
  flex-direction: column;
  gap: 15px;
  transition:
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* This ensures Bootstrap's .card doesn't shrink or grow due to rem changes */
.accessibility-panel.card {
  font-size: 16px !important;
  padding: 20px !important;
  margin: 0 !important;
  border-radius: 20px !important;
}

/* Override Bootstrap rem styles inside panel only */
.accessibility-panel.card * {
  font-size: 16px !important;
  /* avoid rem inheritance */
  line-height: 1.4;
  /* Optional: stabilize layout */
}


.accessibility-panel.show {
  display: flex;
  animation: panelSlideIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accessibility-panel.left-side {
  right: auto;
  left: 80px;
}

.accessibility-panel.right-side {
  left: auto;
  right: 80px;
}

#accessibilityPanel {
  font-size: 18px !important;
}

#accessibilityPanel.card {
  padding: 16px !important;
  margin: 10px !important;
  border-radius: 6px !important;
}

#accessibilityPanel.card * {
  font-size: 18px !important;
  padding: 5px !important;
  /* or use specific px values if needed */
  margin: 0px !important;
}








/* Sir jess login reg form emp css*/
.background-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 60vw;
  height: 60vw;
  background-color: #6db5ff;
  border-radius: 50%;
  transform: translate(25%, -20%);
  z-index: -1;
  overflow: hidden;
}

html,
body {
  overflow-x: hidden;
  /* Prevents horizontal scrolling */
}


.blue-circle-left {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 50vw;
  height: 50vw;
  background-color: #6eb7ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}



.blue-circle-lower-right {
  position: absolute;
  top: 80%;
  right: -50%;
  width: 50vw;
  height: 50vw;
  background-color: #6eb7ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}


.blue-small-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 20vw;
  height: 20vw;
  background-color: #6eb7ff;
  border-radius: 50%;
  transform: translate(-100%, 160%);
  z-index: -1;

}


.custom-fields::placeholder {
  font-size: 14px;
  opacity: 1;
}


.custom-fields {

  font-size: 16px;
  color: red;
  border: 1px solid #0160af;
}



#about-ojtgo {

  margin-top: 200px;
}








/* Jess Baggs and Millard */
/* Popup background */

/* Modified by Lorenzo @ 03/31/2025 */
.popup-overlay {
  display: none;
  position: fixed;
  z-index: 1050;
  /*Higher that the fixed nav bar (1030)*/
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Popup box */
.popup-box {
  background: #fff;

  padding: 10px;
  width: 30%;
  position: relative;
}


@media (max-width: 991px) {
  .popup-box {
    width: 70%;
  }
}


@media (max-width: 767px) {
  .popup-box {
    width: 90%;
  }
}

/* Close button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}



@media (max-width: 991px) {
  #about-ojtgo {
    margin-top: 100px;
    /* Applies for 991px and below */
  }
}

/* Sir jess login reg form emp css end */






/************* Landing Page Modifications *************/

/* Globaly set styles */

.input-styles {
  width: 500px;
  border-radius: 20px !important;
  font-size: 1rem !important;

}

body {
  background-color: #FFFFFF !important;
  /* Set Correct Background Color */
  overflow-x: hidden;
}


/* End of globaly set styles */

/* Modified by: John Carlo Tulin
Date: 06/27/2025*/

.navbar-btn {

  background: var(--gridient, linear-gradient(241deg, #1CB423 0%, #0F7414 100%)) !important;
  color: white !important;
  border: none !important;
  padding: 5px 15px;

}

#createAnAccountBtn {

  background: #ffffff !important;
  color: #0F7414 !important;
  border: #0F7414 1px solid !important;
  text-wrap-mode: nowrap;

}

/* Hero Container */

.kickstart-hero-container,
.kickstart-hero-skeleton {

  background: #ffffff !important;
  margin-left: -10px;
  /* Move the entire container to the left */
  width: calc(100% + 20px);
  /* Fill the remaining space to the right */
  min-height: 400px;
  /* ✅ Replaces fixed height with flexible one */
  padding: 0 10px;
}






.hero-header {

  max-width: 600px;
  width: 100%;

}


.filter-btn {

  width: 200px !important;

}


/* Job list and details container */


/* Main Find Your Match Content */
.job-list-container {}



/* .job-details-pane {
    height: fit-content;
} */

/* modified by Lorenzo @ 04/24/2025 */
.job-details-container {
  box-shadow: -1px 5px 5px 1px rgba(106, 106, 106, 0.75);
  -webkit-box-shadow: -1px 5px 5px 1px rgba(106, 106, 106, 0.75);
  -moz-box-shadow: -1px 5px 5px 1px rgba(106, 106, 106, 0.75);
}

.posting-description {
  overflow-y: scroll;
  padding-right: 1rem;
  max-height: 200px;
  word-break: break-all;
}

/* modified by Lorenzo @ 04/24/2025 */
.job-list-wrapper {
  /*height: calc(100vh + 310px);*/
  height: fit-content;
}

.job-list-pane {
  flex: 1;
  height: inherit;
  overflow-y: scroll;
}


/* Job list (Cards) */

.tag {

  background-color: #d4e8e9;
  padding: 5px 25px !important;

}

/* modified by Lorenzo @ 04/24/2025 */
/* Apply styling if the job card is selected */
.job-card {
  border: 2px solid #bebebe;
  /* box-shadow: -1px 5px 5px 1px rgba(106,106,106,0.75);
    -webkit-box-shadow: -1px 5px 5px 1px rgba(106,106,106,0.75);
    -moz-box-shadow: -1px 5px 5px 1px rgba(106,106,106,0.75); */
  transition: background-color 0.3s ease;
  /* Ensures smooth animation */
}

.job-card.active {
  border: 1px solid #0F7414;
  /* box-shadow: 0 0 10px 2px rgba(0, 123, 255, 0.5); glowing blue shadow */
}

.job-card:hover {
  background-color: #cfcece !important;
  color: #fff !important;
}

.job-card:hover h3#job-title {
  color: #fff !important;
  /* or your preferred color */
}

#info-capsule-list li {
  font-size: 0.7rem;
  padding: 8px !important;
  border-radius: 10px !important;
  background-color: #e9ecef;
  /* Bootstrap gray-200 */
  color: #212529;
  /* text-dark */
}

.job-description-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* limit to 3 lines */
  -webkit-box-orient: vertical;
  font-size: 0.75rem;
}



/* Job Details */

/* Modified by: John Carlo Tulin
06/27/2025
*/

.modal-send-request {

  line-height: 1;
  color: white !important;
  background: var(--gridientt_4, linear-gradient(180deg, #1CB423 0%, #0F7414 100%)) !important;
  border-radius: 10px;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 1rem;

}

.progress-bar {

  background-color: #70B7FB !important;

}

.progress {

  background-color: #C8E0F2 !important;
  height: 20px;

}


.create-account-banner {

  background: var(--gridientt_4, linear-gradient(180deg, #1CB423 0%, #0F7414 100%)) !important;
  padding: 15px 0;
  border-radius: 0 0 0.4rem 0.4rem !important;
  /* Modified by Lorenz o@ 04/24/2025 */
  width: 100%;
  margin-top: auto;
  /* Push to bottom */

}

.create-acc-link {

  text-decoration: underline !important;
  text-decoration-color: navy;

}



/* shimmer loading animation */
.skeleton-loader {
  padding: 2rem;
}

.skeleton-block {
  height: 20px;
  background: #e0e0e0;
  border-radius: 4px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.skeleton-block::after {
  /* Deals with the animation */
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #f0f0f0 50%, transparent 100%);
  animation: shimmer 1.5s infinite;
  /*Deals with the shimmer speed*/
}

@keyframes shimmer {
  100% {
    transform: translateX(100vw);
    /*Determines the length of the shimmer will travel*/
  }
}



/* 
    Migrated @ 04/11/2025
    added code by Lorenzo @ 04/11/2025 
    For register format guideline    
    
*/


/* For password */
.guidelines {
  font-size: 13px;
  color: #666;
  background: #f9f9f9;
  border: 1px solid #ddd;
  line-height: 1.3;
  width: 310px;
}

.condition {
  font-size: 13px;
  line-height: 1.3;
  width: 310px;
}

/* Added by Lorenzo @ 04/24/2025 */
/* Override bootstrap styling */
.is-invalid {

  transition: none !important;
}

.reg-field.highlight {

  border-color: #ED2939 !important;

}





/* added by lorenzo @ 05/06/2025 */
/* for responsive design */


@media (max-width: 767px) {



  .modal-overlay {

    padding: 0 !important;

  }


  .modal-overlay .information-entry-modal {

    width: 100%;
    max-width: unset;
    height: 95%;
    max-height: 900px;
    overflow-y: scroll;

  }

  .modal-overlay .information-entry-modal.active {

    transform: translateY(5%);

  }


  .custom-width {

    max-width: 100% !important;

  }

}


@media (max-width: 480px) {

  .kickstart-hero-container,
  .kickstart-hero-skeleton {

    height: 500px;
    /* Changed by lorenzo @ 05/09/2025*/

  }





}


/*Footer*/

.footer-container {
  background-color: #1565c0;
  color: white;
}

/* For the Whilte Logo */
/* Makes the logo white if needed */
/* .footer-logo {
        filter: brightness(0) invert(1); 
    }*/

.social-circle {
  transition: all 0.3s ease;
}

.social-circle:hover {
  background-color: #e0e0e0;
}

/* Center logo and social icons on small screens */
/*@media (max-width: 400px) {*/
/*    .footer-container .col-lg-4,*/
/*    .footer-container .col-lg-3,*/
/*    .footer-container .col-lg-5 {*/
/*        text-align: center !important;*/
/*    }*/

/*    .footer-container .align-items-lg-start {*/
/*        align-items: center !important;*/
/*    }*/

/*    .footer-container .text-lg-start {*/
/*        text-align: center !important;*/
/*    }*/

/*    .footer-container .d-flex {*/
/*        justify-content: center;*/
/*    }*/
/*}*/

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
}

.feature-icon {
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  padding: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-title {
  color: #2c3e50;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.feature-description {
  color: #5a6c7d;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.content-wrapper {
  padding: 2rem;
}

/* container clips anything sliding outside */
.information-entry-modal {
  position: relative;
  overflow: hidden;
}

/* remove any default transform/transition on panels */
.information-entry-modal>div {
  /* no transform or transition here: we’ll rely on keyframes */
}

/* slide-in animation */
.active-slide-in {
  animation: slideIn 0.3s ease forwards;
}

/* slide-out animation */
.active-slide-out {
  animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}


@media (max-width: 768px) {
  .feature-card {
    margin-bottom: 2rem;
  }

  .content-wrapper {
    padding: 1.5rem;
  }
}

/* added by Charls */

/* Legal footer responsiveness */
@media (min-width: 992px) {
  .legal-offset {
    margin-left: 4rem !important;
  }
}

/* MOBILE FOR JOB POST (max-width 575.98px) */
@media (max-width: 575.98px) {
  .card-body {
    padding: 1rem !important;
    /* reduce padding */
  }

  .card-body .rounded-circle {
    width: 120px !important;
    /* smaller circle */
    height: 120px !important;
  }

  .card-body figure {
    width: 100px !important;
    /* smaller lottie */
    height: 80px !important;
  }

  .card-title {
    font-size: 1.25rem !important;
    /* slightly smaller title */
    margin-bottom: .5rem !important;
  }

  .badge {
    font-size: .65rem !important;
    /* smaller badge text */
    padding: .25rem .5rem !important;
  }

  .card-footer small {
    font-size: .75rem !important;
    /* smaller footer text */
  }
}


/* Mobile for Kickhero */
@media (max-width: 576px) {
  .hero-container .col-md-6 {
    margin-top: 50px !important;
  }

  .kickstart-hero-container {
    width: 95% !important;
  }

  .fs-1 {
    font-size: 1.8rem !important;
  }

  #pwd_e_landing,
  #pwd_e_welcome {
    width: 250px !important;
    height: 200px !important;
  }
}

@media (max-width: 768px) {
  .subtitle-header {
    font-size: 1.5rem;
  }
}

#signBtn {
  width: 80px !important;
}

#createAnAccountBtn {
  width: 171px !important;
}


/* Added by Timothy @ 08/20/2025 */
/* Light mode (default) */
.text-highlight {
  color: #212529;
  /* Bootstrap text-dark */
}

/* Dark mode */
.accessibility-dark .text-highlight {
  background-color: transparent !important;
  /* no highlight background */
  color: #adb5bd !important;
  /* Bootstrap text-secondary (muted gray) */
}

/* Light mode */
.text-mode-toggle {
  color: #000 !important;
  /* black */
}

/* Dark mode */
.accessibility-dark .text-mode-toggle {
  color: #fff !important;
  /* white */
}

/* End of Addition by Timothy @ 08/20/2025 */

/* Logo safety + consistent sizing */
#register-content .modal-logo {
  max-width: 100%;
  max-height: 70px;
  height: auto !important;
}

/* Keep rows tidy inside custom modal */
#register-content .row {
  margin-left: 0;
  margin-right: 0;
}

/* Label alignment tweaks */
#register-content .col-form-label {
  line-height: 1.25;
}

/* Clickable visibility toggles */
#register-content .toggle-visibility {
  cursor: pointer;
  user-select: none;
}

/* Added by Timothy @ 08/22/2025 */
/* Darkmode Toggle Switch */
/* Wrapper */
.custom-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}


/* Subtle background for guidelines */
#register-content .guidelines {
  background: var(--bs-light, #f8f9fa);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: .5rem;
}


/* Track (background bar) */
.toggle-track {
  width: 60px;
  height: 28px;
  background: #ccc;
  border-radius: 50px;
  position: relative;
  transition: background 0.3s ease;
}

/* Thumb (circle) */
.toggle-thumb {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Active State */
.toggle-track.active {
  background: #188754;
  /* green theme */
}

.toggle-track.active .toggle-thumb {
  transform: translateX(32px);
}

/* End of Darkmode Toggle Switch */


/* Contrast Toggle Switch */
/* Wrapper */
.custom-contrast-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* Track (background bar) */
.contrast-toggle-track {
  width: 60px;
  height: 28px;
  background: #ccc;
  border-radius: 50px;
  position: relative;
  transition: background 0.3s ease;
}

/* Thumb (circle) */
.contrast-toggle-thumb {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Active State */
.contrast-toggle-track.active {
  background: #188754;
  /* green theme */
}

.contrast-toggle-track.active .contrast-toggle-thumb {
  transform: translateX(32px);
}

/* End of Contrast Toggle Switch */

/* Dyslexia Toggle Switch */
/* Wrapper */
.custom-dyslexia-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* Track (background bar) */
.dyslexia-toggle-track {
  width: 60px;
  height: 28px;
  background: #ccc;
  border-radius: 50px;
  position: relative;
  transition: background 0.3s ease;
}

/* Thumb (circle) */
.dyslexia-toggle-thumb {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Active State */
.dyslexia-toggle-track.active {
  background: #188754;
  /* green theme */
}

.dyslexia-toggle-track.active .dyslexia-toggle-thumb {
  transform: translateX(32px);
}

/* End of Dyslexia Toggle Switch */


/* Added by Timothy @ 08/26/2025 */


/* Added by Allen @09/23/2025 */

/* Added by Allen @09/23/2025 */
.hero-wrap {
  padding: 56px 0 24px;
}

.hero-title{
  font-weight: 800 !important;
  line-height: 1.1;
  letter-spacing: .2px;
}


.hero-sub {
  max-width: 34rem;
}

.highlight {
  color: #0f7414;
  text-decoration: underline 4px #1f9d39;
  text-underline-offset: .2em;
}

.search-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  overflow: hidden;
}

.search-form-control-lg {
  border: 0 !important;
}

.search-form-control-lg:focus {
  box-shadow: none !important;
}


/* Search submit button (overrides Bootstrap) */
.btn-search{
  background: #0f7414 !important;
  border-color: #1f9d39 !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: .2px !important;
  padding: .875rem 1rem !important;
  height: 100% !important;
  border-radius: 0px !important;   /* change to 999px for pill */
  box-shadow: 0 6px 14px rgba(31,157,57,.20) !important;
  transition: transform .12s ease, box-shadow .12s ease !important;
}
.btn-search:hover{
  background: #18812e !important;
  border-color: #18812e !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 18px rgba(31,157,57,.28) !important;
}
.btn-search:active{
  transform: translateY(0) !important;
  box-shadow: 0 4px 10px rgba(31,157,57,.18) !important;
}
.btn-search:focus{
  outline: 0 !important;
  box-shadow: 0 0 0 .25rem rgba(31,157,57,.35) !important;
}
.btn-search:disabled{
  opacity: .7 !important;
  cursor: not-allowed !important;
}




@media (min-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }
}

 /* ==== Events carousel polish ==== */
  .event-carousel { max-width: 560px; margin-inline: auto; }
  @media (min-width: 992px){ .event-carousel { max-width: 640px; } }

  .event-carousel .carousel-inner{
    border-radius: 1rem;           /* nice rounded corners */
    overflow: hidden;              /* clip overlays & images */
  }

  .event-carousel .carousel-item{
    position: relative;            /* enable overlay layer */
    isolation: isolate;            /* keep overlay local */
  }

  .event-carousel .carousel-item img{
    width: 100%;
    aspect-ratio: 16/9;            /* consistent height */
    object-fit: cover;             /* crop nicely */
    display: block;
  }

  /* Contrast overlay + inner shadow ring */
  .event-carousel .carousel-item::after{
    content: "";
    position: absolute; inset: 0;
    background:
      /* bottom gradient for captions */
      linear-gradient(to top, rgba(0,0,0,.58) 0%, rgba(0,0,0,.16) 48%, rgba(0,0,0,0) 75%),
      /* subtle global darkening */
      rgba(0,0,0,.10);
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,.08),        /* thin inner ring */
      inset 0 -110px 130px rgba(0,0,0,.38),   /* bottom inner shadow */
      inset 0  70px  90px rgba(0,0,0,.10);    /* top inner shadow */
    pointer-events: none;
    z-index: 1;                     /* under caption, over image */
  }

  /* Readable captions */
  .event-carousel .carousel-caption{
    left: 0; right: 0; bottom: 0;
    padding: 1rem 1.25rem;
    z-index: 2;                     /* above overlay */
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
  }
  .event-carousel .carousel-caption h5,
  .event-carousel .carousel-caption p { color: #fff; }

  /* Indicators: compact dots with subtle shadow for contrast */
  .event-carousel .carousel-indicators { bottom: .5rem; }
  .event-carousel .carousel-indicators [data-bs-target]{
    width: 8px; height: 8px; border-radius: 50%;
    background-color: rgba(255,255,255,.8);
    box-shadow: 0 1px 4px rgba(0,0,0,.35);
  }
  .event-carousel .carousel-indicators .active{
    background-color: #fff;
  }

 /* Make prev/next controls transparent (no pink bar) */
.event-carousel .carousel-control-prev,
.event-carousel .carousel-control-next{
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  width: 12% !important;            /* nice hit area without big overlay */
}

.event-carousel .carousel-control-prev:hover,
.event-carousel .carousel-control-prev:focus,
.event-carousel .carousel-control-prev:active,
.event-carousel .carousel-control-next:hover,
.event-carousel .carousel-control-next:focus,
.event-carousel .carousel-control-next:active{
  background-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
}

/* Ensure icons stay white and visible */
.event-carousel{
  --bs-carousel-control-color: #fff;
  --bs-carousel-control-opacity: .9;
  --bs-carousel-control-hover-opacity: 1;
}
.event-carousel .carousel-control-prev-icon,
.event-carousel .carousel-control-next-icon{
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}

  
  .event-carousel .carousel-control-prev::before,
.event-carousel .carousel-control-next::before{
  content: none !important;
}

/* Default: hide controls (but keep keyboard accessible) */
.event-carousel .carousel-control-prev,
.event-carousel .carousel-control-next{
  opacity: 0 !important;
  pointer-events: none;                 /* no accidental taps/clicks */
  transition: opacity .18s ease;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  width: 12% !important;                /* reasonable hit area when visible */
}

/* Show controls when hovered or any child is focused (keyboard) */
.event-carousel:hover .carousel-control-prev,
.event-carousel:hover .carousel-control-next,
.event-carousel:focus-within .carousel-control-prev,
.event-carousel:focus-within .carousel-control-next{
  opacity: 1 !important;
  pointer-events: auto;
}

/* Keep chevrons crisp */
.event-carousel{
  --bs-carousel-control-color: #fff;
  --bs-carousel-control-opacity: .95;
  --bs-carousel-control-hover-opacity: 1;
}
.event-carousel .carousel-control-prev-icon,
.event-carousel .carousel-control-next-icon{
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}

/* On touch devices (no hover), always show controls */
@media (hover: none){
  .event-carousel .carousel-control-prev,
  .event-carousel .carousel-control-next{
    opacity: 1 !important;
    pointer-events: auto;
  }
}

/* Hide carousel arrows on mobile (≤ 991.98px, Bootstrap's lg breakpoint) */
@media (max-width: 991.98px){
  .event-carousel .carousel-control-prev,
  .event-carousel .carousel-control-next{
    display: none !important;
  }
}
.dropdown-menu .dropdown-item:hover { background: #f6f9f6; }
.dropdown-menu { min-width: 220px; }

/* ===== Share button ===== */
.share-menu .btn-share{
  width: 36px; height: 36px;
  display:flex; align-items:center; justify-content:center;
  border: 0;
  border-radius: 999px;
  background: #eee;           /* grey pill like your screenshot */
  color: #2b2b2b;
  box-shadow: 0 1px 2px rgba(0,0,0,.06) inset;
  transition: background .15s ease, transform .05s ease;
  line-height: 1;
}
.share-menu .btn-share:hover{ background:#e4e6e8; }
.share-menu .btn-share:active{ transform: scale(.98); }
.share-menu .btn-share:focus-visible{
  outline: 2px solid #0F7414; outline-offset: 2px;
}

/* ===== Dropdown panel ===== */
.share-dropdown{
  --share-radius: 12px;
  min-width: 220px;
  padding: 8px;
  border: 1px solid #e7eaee;
  border-radius: var(--share-radius);
  background: #fff;
  box-shadow:
    0 12px 28px rgba(0,0,0,.12),
    0 2px 8px rgba(0,0,0,.06);
  z-index: 1060;
}

/* little “arrow” pointing to the button */
.share-menu .dropdown-menu::before{
  content: "";
  position: absolute;
  top: -6px;                 /* pull above the menu */
  right: 14px;               /* align near the button; adjust if needed */
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid #e7eaee;
  border-top: 1px solid #e7eaee;
  transform: rotate(45deg);
}

/* Items */
.share-dropdown .dropdown-item{
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 500;
  color: #1f2328;
  transition: background .12s ease, color .12s ease;
}
.share-dropdown .dropdown-item i{ font-size: 1rem; opacity: .9; }

.share-dropdown .dropdown-item:hover{
  background: #f1f8f2;       /* subtle green tint */
  color: #0F7414;            /* your brand green */
}

/* Divider spacing */
.share-dropdown .dropdown-divider{ margin: 6px 8px; }

/* Optional: tighter gap between Send button and share icon */
.text-end.ms-auto.d-flex .btn-share{ margin-left: 4px; }

/* Dark-mode (optional) */
@media (prefers-color-scheme: dark){
  .share-menu .btn-share{ background:#3a3a3a; color:#e9e9e9; }
  .share-menu .btn-share:hover{ background:#444; }
  .share-dropdown{
    background:#1f1f1f; border-color:#2a2a2a;
    box-shadow: 0 12px 28px rgba(0,0,0,.5), 0 2px 8px rgba(0,0,0,.3);
  }
  .share-menu .dropdown-menu::before{
    background:#1f1f1f; border-color:#2a2a2a;
    z-index: 0;
  }
  .share-dropdown .dropdown-item{ color:#e9e9e9; }
  .share-dropdown .dropdown-item:hover{
    background:#143a1a; color:#9be29f;
  }
}

/* the flex row that contains Send Request + share menu */
.job-header { overflow: visible !important; position: relative; z-index: 0; }

/* keep the menu above neighbors */
.share-menu { position: relative; z-index: 1061; }
.share-dropdown { z-index: 1080; }          /* your .dropdown-menu */
.share-menu .dropdown-menu::before { z-index: 1081; } /* the small arrow */


/* If your Send button has an absolute overlay, don't let it block clicks */
.btn .position-absolute{ pointer-events: none; }
/* Align icons and text nicely */
.share-item { gap: 10px; padding: 10px 12px; color: black !important; }
.icon-pill{
  width: 28px; height: 28px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #f1f3f4;      /* soft gray behind icon */
  color: #1f2328;
  flex: 0 0 28px;           /* fixed width to align labels */
}
.icon-pill i{ font-size: 14px; line-height: 1; }

/* Hover state to match your brand */
.share-dropdown .dropdown-item:hover{
  background: #f1f8f2;
  color: #0F7414;
}
.share-dropdown .dropdown-item:hover .icon-pill{
  background: #e7f4ea;      /* subtle green tint on icon bg */
  color: #0F7414;
}

/* Danger item */
.icon-pill.danger{ background:#fff1f1; color:#b42318; }
.share-dropdown .dropdown-item.text-danger:hover{
  background:#fff1f1; color:#b42318;
}

/* Ensure on top + arrow above */
.share-dropdown{ z-index:1080; margin-top:6px; }


/* If parent container clips children, allow escape */
.job-header{ overflow: visible !important; position: relative; z-index: 0; }
#shareMenuBtn { position: relative;  max-width: 40px; max-height: 40px; }
#job-post-company-logo-image {
  max-width: 60px;
  max-height: 60px;
}
.job-description-header {
  background-color: #0f7414 !important;
  /* color:  #0f7414 !important; */
}
#send-request-btn {
  background-color: #0f7414 !important;
  color: white !important;
}
#job-details-article {
    height: fit-content !important;
}

