/* Custom styles for the Course Material Website */

/* General body styling */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navbar styling */
.navbar {
  background-color: #2c3e50;
  padding: 1rem;
}

.navbar a {
  color: white !important;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  color: #ecf0f1 !important;
}

/* Headings */
h1, h2, h3 {
  color: #2c3e50;
}

/* Links */
a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Custom container for content */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* Card effect for course listings */
.course-card {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
