:root {
    /* color codes */
    --primary-color: #10174D;
    --secondary-color: #DEDEDE;
    --white-color: #fff;
    --black-color: #000000;

    /* Padding & margin */
    --p-20: 20px;
    --m-20: 20px;
    --p-10: 10px;
    --m-10: 10px;
    --g-10: 10px;
    --g-20: 20px;
}
/* Global CSS Start*/
html {
    font-family: "DM Sans", sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
  }

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a:focus {
    outline: 0 !important;
    outline-offset: 0 !important;
  }
  input:focus, button:focus, select:focus, textarea:focus{
    outline: none;
    border: none;
    box-shadow: none;
  }

  .admin_notes:focus{
    outline: none;
    border: 1px solid var(--primary-color);
    box-shadow: none;
  }

  #filterForm {
    gap: 10px;
  }

  #employmentFilter {
    background-color: transparent;
  }

  #employmentFilter:focus {
    border: 1px solid var(--primary-color);
  }

  a {
    text-decoration: none;
  }
  input, textarea, select, option, button{
    font-family: "DM Sans", sans-serif;
  }
  body{
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 28px;
  }
  
  .container {
    width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  .gg-chevron-down {
    box-sizing: border-box;
    position: relative;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px
  }
  .gg-chevron-down::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    left: 4px;
    top: 2px
  }
  .m-t-b-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .d-grid{
    display: grid;
    gap: 30px;
  }
  .d-flex{
    display: flex;
  }
  .col-2{
    grid-template-columns: repeat(2, 1fr);
  }
  .col-3{
    grid-template-columns: repeat(3, 1fr);
  }
  .col-4{
    grid-template-columns: repeat(4, 1fr);
  }
  .col-5{
    grid-template-columns: repeat(5, 1fr);
  }
  .p-0{
    padding: 0 !important;
  }
  .m-0{
    margin: 0 !important;
  }
  #divisionFilter,
  #careerFilter,
  #categoryFilter {
  padding: 12px 35px 12px 10px;
  border: 1px solid var(--primary-color);
  font-size: 14px;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23667085' stroke-width='2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E")
            no-repeat right 15px center;
  background-size: 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
      color: var(--primary-color);
      font-weight: 500;
}

#careerFilterForm {
  margin-bottom: 10px;
}
  .common-btn{
    background: #F1582D1A;
    border: 1px solid #F1582D;
    color: #000;
    box-shadow: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 180px;
    text-align:center
  }
  
  .common-btn-two{
    background: #F1582D;
    border: 1px solid #F1582D;
    color: #fff;
    box-shadow: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 180px;
    text-align:center
  }
  .common-btn:hover{
    background: #F1582D;
    color: #fff;
  }
  .section-padding{
    padding: 80px 0;
  }
  .primary-bg{
    background: var(--primary-color);
  }
  .secondary-bg{
    background: var(--secondary-color);
  }
  .primary-font-color{
    color: #1A286D !important;
  }
  .secondary-font-color{
    color: #F1582D !important;
  }
  .main-title{
    font-size: 30px;
    font-weight: 600;
    color: #1A286D;
    margin-bottom: 0;
  }
  .sub-title{
    font-size: 14px;
    font-weight: 400;
    color: #000;
  }
  .relative{
    position: relative;
  }
  .box-shadow-none{
    box-shadow: none !important;
  }
  .bg-none{
    background: none !important;
  }
  .img-full{
    display: block !important;
    width: 100% !important;
  }

.roboto-font {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:"wdth" 100;
}

.left{
    border: 1px solid #c5c9cf;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 15%;
}
.right{
    width: 85%;
    float: right;
}
header{
    border-top: 1px solid #c5c9cf;
    border-bottom: 1px solid #c5c9cf;
    border-right: 1px solid #c5c9cf;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
}
#sidebar {
    padding: 15px;
}
.nav-links {
    display: grid;
    gap: 10px;
    padding: 15px 0px;
}
.nav-links a {
  color: var(--black-color);
  padding-left: 5px;
}
.nav-links a:hover {
    /* background-color: var(--primary-color); */
    color: var(--primary-color);
    border-radius: 2px;
}
.dropdown-btn svg{
width: 20px;
height: 20px;
   transition: transform 0.6s ease;
   margin-right: 5px;
    margin-left: 5px; /* Optional spacing */
}
.active-line{
  color:#2a2e6dc2 !important;
  text-decoration-color: var(--primary-color) !important;
}
.dropdown-btn{
      display: flex;
    justify-content: space-between;
    align-items: center;
}
.dropdown-container a{
  text-decoration: underline !important;
    text-decoration-color: #2a2e6d1f !important;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px !important;
}

.dropdown-container a{ 
  color: #686b6f;
}

.dropdown-container .active-line {
  color: var(--primary-color) !important;
}

.nav-links a.active {
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
}
.admin-header {
    padding: 15px;
    z-index: 10000;
    background: var(--primary-color)
}
.profile {
    background-color: var(--white-color);
    color: var(--black-color);
    padding: 5px;
    width: 12%;
    text-align: center;
    border-radius: 0.5rem;
}
.profile-section {
    display: flex;
    justify-content: flex-end;
}
.profile {
  position: relative;
  cursor: pointer;
}

.profile-section {
  position: relative;
  cursor: pointer;
}

.profile {
  padding: 10px 15px;
  background-color: #f0f0f0;
  border-radius: 6px;
  font-weight: bold;
}

.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  min-width: 150px;
  z-index: 100;
}

.profile-dropdown a {
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
  transition: background 0.2s ease;
}

.profile-dropdown a:last-child {
  border-bottom: none;
}

.profile-dropdown a:hover {
  background-color: #f5f5f5;
}

.profile-section:hover .profile-dropdown {
  display: flex;
}

.dropdown-container {
  display: none;
  padding-left: 15px;
  flex-direction: column;
}
.dropdown-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.dropdown-wrapper a {
  text-decoration: none;
}

.dropdown-container a {
  width: 100%;
  display: block;
  margin-top: 5px;
}

