/* General Sidebar Styles */
.sidebar {
  width: 17vw;
  height: fit-content;
  background-color: #fff; 
  padding: 1.5rem;
  border-radius: 0.5rem; 
  margin-left: 5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.33); 
}

/* Sidebar Image Styling */
.sidebar-image {
  width: 10rem;
  margin: auto;
  height: auto;
  max-width: 100%; 
}

/* Styling for Section Titles */
.sidebar h5 {
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem auto; 
  color: #333; 
  width: 50%;
  padding-bottom: 0;
}

.list-group {
  text-align: left;
}

/* List Group and Links Styling */
.list-group-item {
  padding: auto; 
  background-color: transparent;
  transition: background-color 0.3s ease;
  width: 90%;
  height: auto;
  margin: .5rem auto;
  text-decoration: underline;
}

/* Links */
.list-group-item a {
  text-decoration: none;
  color: #333;
  font-size: 1rem; 
  font-weight: 500;
  transition: color 0.3s ease;
  text-align: left;
  padding-bottom: 1rem;
  padding-left: .5rem;
  margin-bottom: 1rem;
  width: 100%;
  border: 0;
}

/* Hover Effects for Links */
.list-group-item a:hover {
  color: #007bff; 
  text-decoration: underline; 
}

/* Responsive Styling */
@media (max-width: 768px) {
  .sidebar {
    padding: 1rem;
  }

  .sidebar h5 {
    font-size: 1.1rem;
  }

  .list-group-item a {
    font-size: 0.95rem; 
  }
}

/* Optional: Link hover effect */
.hover-link:hover {
  color: #007bff; 
  text-decoration: underline;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}
