/* Achievements Section Custom Styling */

/* Achievements Sidebar Container - Warm beige/soft pink tint from achive.png */
.sidebar-achievements-container {
  background-color: #efe5e3 !important;
  border: 2px solid #dbcdcb !important;
  padding: 25px 15px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Sidebar Coral/Salmon Red Arrow Buttons with Thick White Inset Border */
.sidebar-achievements-nav .nav-link {
  background-color: #ffffff !important; /* Outer white border wrapper */
  color: #fff !important;
  margin-bottom: 12px;
  padding: 0;
  height: 52px;
  position: relative;
  display: flex;
  align-items: center;
  clip-path: polygon(
    0 0,
    calc(100% - 25px) 0,
    100% 50%,
    calc(100% - 25px) 100%,
    0 100%
  ) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none !important;
}

.sidebar-achievements-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  /* Coral/salmon pinkish-red gradient from achive.png */
  background: linear-gradient(90deg, #ff7373 0%, #fe5252 100%) !important;
  clip-path: polygon(
    0 0,
    calc(100% - 23px) 0,
    calc(100% - 3px) 50%,
    calc(100% - 23px) 100%,
    0 100%
  ) !important;
  z-index: 1;
  transition: background 0.25s ease;
}

.sidebar-achievements-nav .nav-link span {
  position: relative;
  z-index: 2;
  padding-left: 22px;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-family: "Poppins", "Segoe UI", sans-serif;
  letter-spacing: 0.3px;
}

/* Hover & Active States */
.sidebar-achievements-nav .nav-link:hover,
.sidebar-achievements-nav .nav-link.active {
  transform: translateX(6px);
}

.sidebar-achievements-nav .nav-link:hover::before {
  background: linear-gradient(90deg, #ff5757 0%, #e03131 100%) !important;
}

.sidebar-achievements-nav .nav-link.active::before {
  background: linear-gradient(90deg, #e03131 0%, #c92a2a 100%) !important;
}

@media (max-width: 991px) {
  .sidebar-achievements-nav .nav-link {
    clip-path: none !important;
    border-radius: 4px;
  }

  .sidebar-achievements-nav .nav-link::before {
    clip-path: none !important;
    border-radius: 2px;
  }
}
