/* styles.css */

/* Base reset and typography */
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 15px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Links */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Common Alert styles */
.alert {
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 15px;
  background-color: #ffc107;
  color: #856404;
}

/* Footer styling */
footer {
  background-color: #e9ecef;
  padding: 20px 0;
  text-align: center;
  color: #666;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: 1rem;
}
