.sidebar-student {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-family: 'IRANSans', sans-serif;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
}

.sidebar-student .header {
  font-size: 1.125rem;
  font-weight: bold;
  color: #374151;
  margin-bottom: 1rem;
}

.sidebar-student nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.875rem;
}

.sidebar-student nav div {
  flex: 1 1 200px;
}

.sidebar-student nav p {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  font-weight: bold;
  border-bottom: 1px dashed #d1d5db;
  padding-bottom: 0.25rem;
}

.sidebar-student a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  color: #374151;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.sidebar-student a:hover {
  background-color: #f3f4f6;
}

.sidebar-student .text-green-700 {
  color: #047857;
}

.sidebar-student .logout-btn {
  color: #dc2626;
  font-weight: bold;
}

.sidebar-student .btn-outline-secondary {
  margin-top: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: #fff;
  color: #374151;
  text-align: center;
  transition: all 0.2s ease;
}

.sidebar-student .btn-outline-secondary:hover {
  background-color: #f3f4f6;
  border-color: #9ca3af;
}

