.sidebar-header {
  margin-bottom: 20px;
}

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4a6fa5;
}

.search-box {
  position: relative;
  margin-bottom: 20px;
}

.search-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.search-box input {
  width: 100%;
  padding: 10px 10px 10px 35px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

.menu-category {
  font-size: 0.85rem;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  margin: 20px 0 10px;
  letter-spacing: 0.5px;
}

.accordion {
  margin-bottom: 5px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.accordion-header:hover {
  background-color: #e9ecef;
}

.accordion-header.active {
  background-color: #e7f1ff;
  border-color: #4a6fa5;
}

.accordion-title {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.accordion-title i {
  margin-right: 10px;
  color: #4a6fa5;
}

.accordion-icon {
  transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background-color: #f8f9fa;
}

.accordion-content.active {
  /* max-height: 500px; */
  max-height: none;
  border-bottom: 1px solid #e9ecef;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 10px 15px 10px 40px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  background-color: #f0f4f8;
}

.menu-item.active {
  background-color: #e7f1ff;
  color: #4a6fa5;
  font-weight: 500;
}

.menu-item i {
  margin-right: 10px;
  font-size: 0.9rem;
  color: #777;
}

.menu-item.active i {
  color: #4a6fa5;
}

.progress-container {
  margin-top: 30px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.progress-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
}

.progress-bar {
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background-color: #4a6fa5;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.progress-text {
  font-size: 0.8rem;
  color: #777;
}