/* estilos.css */

/* General Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f2f5;
  margin: 0;
  padding: 0;
}

/* Estilos básicos para el header */
header {
  background-color: #007bff;
  color: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Agrega una sombra si deseas un efecto de elevación */
  width: 100%; /* Asegura que el header ocupe todo el ancho de la página */
  top: 0; /* Asegura que el header se quede en la parte superior */
  z-index: 1000; /* Asegura que el header se muestre sobre otros contenidos */
  position: -webkit-sticky; /* Para compatibilidad con navegadores Webkit (Safari) */
  position: sticky; /* Hacer que el header sea sticky */
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 50px;
  float: left;
  align-items: center;
  border-radius: 10px;
  margin-left: 10px;
}

header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

header ul li {
  margin: 0;
}

header ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  transition: background-color 0.3s ease;
}

header ul li a:hover,
header ul li a.active {
  background-color: #0056b3;
  border-radius: 5px;
}

main {
  padding: 20px;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #444;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
}

textarea {
  resize: none;
}

label {
  display: block;
  text-align: left;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
  font-weight: bold;
}

select {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

button {
  padding: 12px;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #fff;
}

p {
  margin-top: 20px;
  font-size: 0.9rem;
}

a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 20px 0;
  background-color: #f0f2f5;
  color: #777;
}

footer p {
  margin: 0;
}

#uploadedImage {
  margin: 0 auto;
  text-align: center;
}
#uploadedImage img {
  box-shadow: 5px 5px 3px #000;
  border-radius: 10px;
}
