body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f4f4f9;
  padding: 50px;
}

.container {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  margin: auto;
}

h1 {
  margin-bottom: 20px;
}

input[type="file"] {
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
}

button:disabled {
  background-color: #ccc;
}

a {
  display: block;
  margin-top: 20px;
  text-decoration: none;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

a:hover {
  background-color: #0056b3;
}




/* Navbar styles */
.navbar {
  background-color: #cececd;
  padding: 1rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  color: white;
  margin: 0;
  
}

a:link {
  text-decoration: none;
  color: white;
}

a:visited {
  text-decoration: none;
}

/*a:hover {*/
/*  text-decoration: none;*/
/*}*/

/*a:active {*/
/*  text-decoration: none;*/
/*}*/

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links li a:hover {
  text-decoration: underline;
}

/* Button styles */
.nav-button {
  background-color: #f39c12;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
}

.nav-button:hover {
  background-color: #e67e22;
}

/* Footer styles */
.footer {
  width: 95%;
  margin-top:50px;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  /*position: fixed;*/
  bottom: 0;
 
}
