.header-container {
    text-align: center;
}

#header-logo {
    width: 130px;
    height: 40px;
    margin:8px;
}

.input-group-dark {
  margin: 1rem;
  width: auto;
  background-color: #00000000;

  div {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
  }

  button {
    border-radius: 0;
    padding: 0rem;
  }

  p {
    margin: auto !important;
  }
}
.lightPopup {
  display: none; /* Initially hide the popup */
  position: absolute; /* Position the popup relative to the root */
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.rounded-bg {
  border-radius: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 7px;
  padding-right: 7px;
}
.category-bg {
  background-color: lightblue;
  color: black;
}
.keyword-bg {
  background-color: lightgreen;
  color: black;
}
.location-bg {
  background-color: lightcoral;
  color: black;
}

/*.category-bg {
    background-color: '#D5F5F5';
  }
  .keyword-bg {
    background-color: '#CAFFCA';
  }
  .location-bg {
    background-color: '#FFFCCA';
  }*/

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.background-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-image: url('assets/background.jpg');*/
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(5px);
  z-index: -2;
}
.filter-container {
  margin-bottom: 20px;
}

.filter-label {
  font-weight: bold;
}

.select-wrapper {
  position: relative;
  display: inline-block;
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 8px 24px 8px 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  width: 200px;
  max-width: 100%;
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}
.filter-container {
  margin-bottom: 20px;
}

.filter-label {
  font-weight: bold;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
}

.chip {
  background-color: #f1f1f1;
  border-radius: 20px;
  padding: 8px 12px;
  margin-right: 8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.close-btn {
  margin-left: 6px;
  cursor: pointer;
}

.active {
  background-color: #ddd;
}

#successView {
  margin: 50px auto;
  text-align: center;
}

/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-header {
  justify-content: space-between;
}

.input-group {
  margin: 1rem;
  width: auto;
  background-color: #00000000;

  div {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
  }

  button {
    border-radius: 0;
    padding: 0rem;
  }

  p {
    margin: auto !important;
  }
}
.input-group-dark {
  margin: 1rem;
  width: auto;
  background-color: #00000000;

  div {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
  }

  button {
    border-radius: 0;
    padding: 0rem;
  }

  p {
    margin: auto !important;
  }
}

.input-group option {
  background-color: white; /* Reset the background color of options */
}
.input-group-dark option {
  background-color: #0f172a; /* Reset the background color of options */
}

.modal-header {
  button {
    background-color: transparent;
    border-color: yellow;
    border-radius: 20px;
    /*border: none;*/
  }
}

.modal-body {
  margin: auto;
}
.menu {
  margin: 0;
  display: flex;
  list-style: none;
  padding-left: 0 !important;

  li {
    margin: auto;
  }
}

.dropdown > a {
  display: flex;
  align-items: center;
  .icon {
    margin-left: 0.25em;
  }
}

.dropdown:hover {
  .dropdown-nav {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-nav {
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.88, -0.72, 0, 1),
    opacity 0.3s ease-in-out;
  transform: translateY(-4rem);
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 1;

  li {
    cursor: pointer;
  }
}

.container-main {
  display: flex;
  justify-content: center;
  align-items: center; /* adjust the height as needed */
}

.item-main {
  width: auto; /* adjust width as needed */
  height: auto; /* adjust height as needed */
  background-color: #f0f0f0; /* just for visualization */
}
.justified-text {
  text-align: justify;
  margin-right: 1.8rem;
}
.container {
  display: flex;
  justify-content: flex-end;
}

.child {
  /* Add styles for your child elements */
  margin: 0 10px; /* Example margin */
}
.header {
  position: fixed; /* Fix the header position */
  top: 0; /* Position at the top of the viewport */
  width: 100%; /* Occupy the full width */
  z-index: 1000; /* Ensure the header appears above other content */
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 8px;
}

body {
  margin: 0 !important;
  zoom: 90%;
  padding: 0 !important;
}

.left-txt {
  display: flex;
  margin: 0 2rem;
  cursor: pointer;
}

.right-side {
  margin: auto 2rem;
}

.resume-btn {
  background: skyblue;
  border-radius: 2rem;
  color: white;
  padding: 0.5rem;
  border: unset;
  width: fit-content;
}

.header-txt1 {
  color: orange;
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.header-txt2 {
  color: black;
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.hero-area {
  margin-top: 55px;
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgb(0, 195, 255) 100%
  );
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.hero-txt {
  margin-top: -64px;
  display: flex;
  flex-direction: column;
  padding: 2rem;

  p {
    width: fit-content;
    margin: auto;
    text-align: center;
    color: white;
    font-family: sans-serif;
  }

  .h1 {
    font-size: 2rem;
    font-weight: 300;
    padding: 1rem;
  }
}

.search-section {
  display: flex;
  min-width: 60%;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  width: fit-content;
  margin: auto;
  background-color: white;
  border: 5px solid skyblue;
  border-radius: 1rem;
}

.search-btn {
  color: white;
}

.course-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: -16px;
  margin: 2rem;
  justify-content: center;
  align-items: center;
}

.course-img {
  width: 5.3rem;
  height: 3.8rem;
  border-radius: 2rem;
}

.card-body {
  margin: 1rem;
}

.card {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border: none;
  background: #fff;
  border-radius: 1rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer; /* Change cursor to pointer to indicate clickability */
  transition: transform 0.3s ease; /* Add transition effect */
  z-index: 1;
  overflow: hidden;
}
.card:hover {
  background-color: #fdf9ff; /* Change background color on hover */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow on hover */
}
.card:hover .bg-green {
  background-color: green !important;
  box-shadow: 0 5px 15px rgba(75, 226, 0, 1);
  animation: blink 2s linear infinite;
}
.card:hover .bg-yellow {
  background-color: #ffaa00 !important;
  box-shadow: 0 5px 15px rgba(75, 226, 0, 1);
  animation: blink 2s linear infinite;
}
.card:hover .bg-red {
  background-color: red !important;
  box-shadow: 0 5px 15px rgba(75, 226, 0, 1);
  animation: blink 2s linear infinite;
}

.card-technologies {
  display: flex;
  gap: 1rem;
}

.card-technology-text {
  border: 1px solid rgb(153, 148, 148);
  border-radius: 0.8rem;
  padding: 0.2rem;
  color: gray;
  font-size: 0.8rem;
}

.card-child {
  display: flex;
  margin: 1rem;
  width: 100%;
  padding-bottom: -48px;
}

.companies-txt {
  margin: 2rem;
}

.job-code {
  text-align: center;
  /* width: 20rem; */
  margin: auto 2rem;
}

.dflex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.space-b {
  justify-content: space-between;
}

.btn-primary {
  background-color: #1260ae;
}

.btn-warning {
  background-color: #ffab07;
  color: #ffff;
}
.btn-disable {
  background-color: #8d8d8d;
  color: #ffff;
}
.btn-disable:disabled {
  background-color: #b2b2b2;
  color: #ffff;
}

.btn {
  border-radius: 2rem;
  min-width: 8rem;
}

.progress-bar {
  background-color: #1260ae !important;
}

.status-text {
  color: #1260ae;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.limit-text {
  color: #1260ae;
  font-size: 0.9rem;
}

.time-left-container {
  display: flex;
  gap: 0.2rem;
}

.dot {
  height: 1.1rem;
  margin-right: 12px;
  margin-bottom: 6px;
  width: 1.1rem;
  background-color: #dfdfdf;
  border-radius: 50%;
  display: inline-block;
}

.btn-filter {
  background: #ffffff
    /*linear-gradient(90deg, rgba(241, 168, 32, 1) 0%, rgba(255, 164, 43, 1) 50%, rgba(0, 255, 29, 1) 100%)*/;
  height: 2.5rem;
  margin: auto 2rem;
  color: black;
  font-weight: bold;
  text-size: 14px;
  border-color: black;
}

.btn-filter:hover {
  background: #ffbc17
    /*linear-gradient(90deg, rgba(241, 168, 32, 1) 0%, rgba(255, 164, 43, 1) 50%, rgba(0, 255, 29, 1) 100%)*/;
  color: white;
  border-color: #ffbc17;
}

.time-left-text {
  color: rgb(100 108 117 / 75%);
  font-size: 0.9rem;
}

.bg-green {
  background-color: green !important;
}

.bg-green:hover .lightPopup {
  display: block; /* Display the popup when hovering over the root */
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.bg-yellow {
  background-color: #ffaa00 !important;
}

.bg-yellow:hover .lightPopup {
  display: block; /* Display the popup when hovering over the root */
}

.bg-red {
  background-color: red !important;
}

.bg-red:hover .lightPopup {
  display: block; /* Display the popup when hovering over the root */
}

.job-description {
  margin: 2rem;
}

.job-description-top {
  display: flex;
  justify-content: space-between;

  div {
    display: flex;
    flex-direction: column;
  }
}

.job-description-bottom {
  display: flex;
  margin: 0.9rem 0;
}

.job-summary {
  width: 75rem;
  background-color: #eeeeee;
  border-radius: 1rem;
}

.job-summary-header {
  background-color: #e4e4e4;
  padding: 1rem;
  border-radius: 1rem 1rem 0 0;
  justify-content: space-between;
}

.job-summary-header {
  display: flex;
}

.job-summary-body {
  margin: 1rem;
}

.hero-job-area {
  display: flex;
  justify-content: space-between;
  /* background-image: radial-gradient(rgba(51, 22, 218, 0.896),
      rgba(0, 204, 255, 0.75)), url('https://picsum.photos/400/300'); */
}

.hero-job-right {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  height: fit-content;
  margin: auto 0;
}

.hero-job-left {
  display: flex;
}

@media only screen and (max-width:932px) {
    .hero-area{
        margin-top:300px;
    }
  .course-container {
    flex-direction: column;
    margin: 1rem;
  }

  .course-img {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    margin: auto;
  }

  .search-section {
    flex-direction: column;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-subtitle {
  font-size: 0.8rem; /* Add a unit (e.g., rem) to the font-size */
  color: #f2f2f2;
}

  .right-card-child {
    flex-direction: column;
  }

  .card-technologies {
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .card-technology-text {
    font-size: 0.8rem;
    padding: 0rem 0.5rem;
    border-radius: 0.8rem;
    border: 1px solid rgb(153, 148, 148);
    padding: 0.2rem;
    color: gray;
  }

  .header {
    display: flex;
    flex-direction: column;
  }

  .right-side {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
  }

  .left-txt {
    padding: 1rem;
    margin: auto;
    cursor: pointer;
  }

  .job-code {
    /* height: 3rem; */
  }

  .card-child {
    margin: 0.5rem;
  }

  .card-body {
    padding: 0.5rem;
  }

  .btn {
    border-radius: 1rem;
    min-width: unset;
  }

  .dot {
    height: 0.5rem;
    width: 0.5rem;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
  }

  .job-code {
    /* text-align: center; */
    /* width: 20rem; */
    margin: auto 0.5rem;
  }

  .time-left-container {
    gap: 0.2rem;
  }

  .time-left-text {
    margin-bottom: 0 !important;
    font-size: 0.8rem;
  }

  .job-description-bottom {
    flex-direction: column;
  }

  .job-summary {
    width: unset;
    margin: 1rem;
  }

  .status-text {
    font-size: 0.7rem;
  }
}
