.sidebar-container {
  width: 300px;
  padding: 0 36px;
}

.links-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.links-container a:link,
.links-container a:visited {
  text-decoration: none;
  color: #2c2c2c;
  transition: color 0.3s;
  font-size: 16px;
  font-weight: 600;
}

.links-container a:hover,
.links-container a:active {
  color: #b69a64;
}

.view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2%;
}
.more-link-and-icon-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 6px;
}

.more-link {
  text-align: unset;
}

.more-link a:link,
.more-link a:visited {
  text-decoration: none;
  font-size: 18px;
  color: #2c2c2c;
  font-weight: 600;
  position: relative;
}

.more-link a:hover,
.more-link a:active {
  color: #b69a64;
}

.more-link a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background-color: #b69a64;
  transition: transform 0.3s;
}
.more-link a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 71.6666667em) {
  .sidebar-container {
    margin: 4% 4% 0% 0%;
  }

  .links-container a:link,
  .links-container a:visited {
    border: 1px solid #153d6e;
    padding: 5px;
    background: #153d6e;
    color: #fff;
  }
}
