/**
 * @file
 * Sidebar navigation custom styles.
 * Moves borders from nav[role="navigation"] to .navigation wrapper.
 */

/* Remove border-top, border, and padding-top from nav element */
.sidebar-second nav[role="navigation"] {
  border-top: none;
  border: none;
  padding-top: 0;
}

/* Add border-top and border to .navigation wrapper */
.sidebar-second .navigation {
  border-top: 5px solid #00c24e !important;
  border: 1px solid #b9f0cd;
}

/* Add padding around the h5 navigation title */
.sidebar-second .navigation h5 {
  padding: 15px;
}

/* Add decorative line after h5 title */
.sidebar-second h5::after {
  content: " ";
  display: block;
  width: 30px;
  height: 4px;
  background-color: #00c24e;
  margin-top: 20px;
}