/* assets/css/style.css */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

header {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
}

nav ul {
  list-style-type: none;
  padding: 0;
  background-color: #444;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Allows wrapping of items on smaller screens */
}

nav ul li {
  margin-right: 10px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  background-color: #555;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: #777;
}

main {
  padding: 20px;
  background-color: white;
  margin: 20px auto;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
  header {
    padding: 15px;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  main {
    margin: 10px;
    padding: 15px;
  }
}
