@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.nav_bar {
    background: linear-gradient(to right, #415486, #112456) !important;
    height: 84px !important;
}
/* .selected-btn::before {
    content: "•";
    font-size: 24px;
    margin-right: 8px; 
  } */
  .hide-scrollbar::-webkit-scrollbar {
    display: none;
  }
  
  .hide-scrollbar {
    -ms-overflow-style: none; 
    scrollbar-width: none; 
  }
  

  @font-face {
    font-family: 'Proxima-Nova-Rg'; 
    src: url('./proxima_nova_reg-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.font{
  font-family: 'Proxima-Nova-Rg', sans-serif;
}
* {
  font-family: 'Proxima-Nova-Rg', sans-serif;
  }

  #searchInput::placeholder {
    color: #acaaaa; 
    opacity: 1;
}


.accordion {
  width: 100%;
  /* max-width: 600px; */
  margin: auto;
}

.accordion-item {
  background: #f1f1f1;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  background: #e2e2e2;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #d0d0d0;
}

.accordion-title {
  flex: 1;
}

.accordion-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  background: white;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-content.open {
  padding: 15px;
  max-height: 200px; /* adjust based on content or make it larger */
}