.service-tag {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.2rem 0.4rem;
}

.management-icons-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.management-icons-row::-webkit-scrollbar {
  display: none;
}

.management-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0.75rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 100px;
  max-width: 150px;
}

.management-icon-item.active {
  background-color: var(--light-color);
}

.management-icon-item .icon-wrapper {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.management-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.icon-title {
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0;
}

.decoration-line-sm {
  height: 2px;
  width: 60%;
  background-color: var(--primary-color);
  margin-top: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.management-icon-item.active .decoration-line-sm {
  opacity: 1;
}

.management-content-container {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  background-color: var(--light-color);
}

.management-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateX(30px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.management-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.content-title {
  color: var(--dark-blue);
  white-space: nowrap;
  text-align: center;
}

.content-description {
  margin-bottom: 0;
}

.content-bar {
  height: 5px;
  background-color: var(--light-color);
}

.content-bar > div {
  height: 5px;
  background-color: var(--primary-color);
}

.decoration-dots {
  display: flex;
  margin: 0.4rem 0;
}

.decoration-dots span {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  margin-right: 5px;
}

.path-left {
  width: 20%;
  position: relative;
}
.path-left::before {
  content: '';
  height: 100%;
  border-right: 1px dashed var(--primary-color);
  position: absolute;
}

.path-left span {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  line-height: 2rem;
  text-align: center;
  font-weight: bold;
  z-index: 1;
}

.path-right {
  width: 80%;
}

@media (max-width: 768px) {
  .management-icon-item {
    padding: 1rem 0.5rem;
    min-width: 80px;
    max-width: 110px;
  }

  .management-icon {
    font-size: 2rem;
  }

  .icon-title {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .management-icon-item {
    min-width: 90px;
    flex: 0 0 auto;
  }
}
