/* Apply Apple Font */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
}

/* Sidebar Styles */
.sidebar {
  width: 250px;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0;
  top: 80px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  font-weight: 500;
}

.sidebar h3 {
  font-size: 18px;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #007bff;
  font-weight: 600;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 8px;
}

.category-list a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 8px;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: 500;
}

.category-list a:hover {
  background: #007bff;
  color: white;
}

/* Adjust Main Content */
.main-content {
  margin-left: 270px;
  padding: 20px;
}

.card img {
  border-radius: 10px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: bold;
}
