/* Estructura del header */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.title-section {
  text-align: center;
  flex: 1;
}

.login-section {
  text-align: right;
  margin-right: 10px;
}

/* Estilo del botón de login */
#loginBtn {
  background: #00796b;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s;
}

#loginBtn:hover {
  background: #004d40;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  background: #004d40;
  color: white;
  padding: 20px;
}

h1 {
  margin: 0;
  font-size: 1.5rem;
}

.year-selector {
  margin-top: 10px;
}

main {
  max-width: 800px;
  margin: 20px auto;
  padding: 10px;
}

.month {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  padding: 10px 20px;
}

.month h2 {
  color: #004d40;
  margin-bottom: 5px;
  border-bottom: 2px solid #004d40;
  padding-bottom: 4px;
}

.event {
  margin-left: 20px;
  font-size: 0.95rem;
  padding: 4px 0;
}

.event span {
  font-weight: bold;
  color: #00796b;
}

/*nuevo codigo */
.login-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f0f0f0;
}

.login-container {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.login-container input {
  display: block;
  margin: 10px auto;
  padding: 8px;
  width: 200px;
}

.login-container button {
  background: #00796b;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 8px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

tr:hover {
  background: #f1f1f1;
}


