body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f8fb;
  margin: 0;
  padding: 0;
  color: #1a222a;
}

.container {
  max-width: 850px;
  margin: 30px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(30,60,90,0.07);
  padding: 36px 48px 18px 48px;
}


.header-flex {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.header-flex .logo {
  width: auto;
  height: auto;
  margin-bottom: 0;
  margin-top: 0;
}
.header-flex h1 {
  margin-bottom: 6px;
}
.header-flex p {
  margin-top: 0;
}

.boton-zip {
  display: inline-block;
  background: #3964a0;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  margin: 18px 0 10px 0;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.07em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: background 0.14s;
}
.boton-zip:hover {
  background: #27426e;
  color: #fff;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

header .logo {
  width: 100px;      /* Cambia el tamaño como quieras */
  height: auto;
  margin-bottom: 10px;
  margin-top: 10px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.06));
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.4em;
  color: #275685;
  text-align: center;
  letter-spacing: 1px;
}
header p {
  text-align: center;
  color: #4971a6;
  margin-bottom: 1.2em;
}

main {
  min-height: 400px;
}

/* Estilo para la tabla del autoindex */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fafdff;
  margin: 0 auto;
  font-size: 1.05rem;
}

th, td {
  padding: 10px 12px;
}

th {
  background: #e6ecf5;
  color: #17426e;
  font-weight: 600;
  border-bottom: 2px solid #b5cee5;
}

tr {
  transition: background 0.12s;
}

tr:hover {
  background: #e8f3ff;
}

/* Iconos como links */
a img {
  vertical-align: middle;
  margin-right: 8px;
}

/* Links de descarga */
a {
  color: #29548c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

a:hover {
  color: #163457;
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  color: #97abc8;
  font-size: 0.96em;
  margin-top: 30px;
  padding: 8px 0 0 0;
  border-top: 1px solid #e5ecf8;
}


