/* ✅ WORKING: Basic styling for the monthly agenda */

body {
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f5f5f5;
}

h1 {
  color: #2c3e50;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 3px solid #3498db;
}

ol {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

li {
  margin: 10px 0;
  line-height: 1.6;
}

strong {
  color: #3498db;
  font-size: 1.2em;
}

ul {
  margin-top: 10px;
}

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

a:hover {
  text-decoration: underline;
}
