table.outer-table {
    margin: 0 auto;
    border: 2px solid #333;
    border-collapse: separate;
    border-spacing: 50px;
    border-radius: 20px;
    background-color: #cac6c6;
}

.mi-tabla {
  margin: 0 auto;
  border: 2px solid #333;
  border-collapse: separate;
  border-spacing: 50px;
  border-radius: 20px;
  background-color: #cac6c6;
  color: #000;
  width: 50%;
  table-layout: fixed;
}

.su-tabla {
  margin-left: 0;
  margin-right: auto;
  border: 2px solid #333;
  border-collapse: separate;
  border-spacing: auto;
  border-radius: 20px;
  background-color: #cac6c6;
  color: #000;
  width: auto;
  table-layout: fixed;
}

.mi-tabla td, .mi-tabla th {
  white-space: normal;
  max-height: 100px;
  overflow-y: auto;
  word-wrap: break-word;
  padding: 8px;
  border-bottom: 1px solid #333;
}

.mi-tabla tr {
  border-bottom: 1px solid #333;
}

.mi-tabla tr:last-child {
  border-bottom: none;
}

.mi-tabla td:nth-child(2) {
  max-width: 200px;
}

table.outer-table td {
    padding: 0px;
}

h1 {
    font-family: "verdana";
    font-size: 50px;
    color: #466c21;
    display: inline-block;
    border: 2px solid #000;
    border-radius: 15px;
    padding: 10px;
}

body {
    margin: 0;
    overflow-x: hidden;
}

/*Estilo boton*/
.button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;	
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #466c21;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
  }
  
  .button:hover {background-color: #4CAF50}
  
  .button:active {
    background-color: #3e8e41;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
  }
/*Estilo boton*/

input[type="text"] {
    width: 300px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.placebox[type="text"] {
  width: 300px;
  height: 25px;
  text-align: center;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
}

input[type="password"] {
    width: 300px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.placebox[type="password"] {
  width: 300px;
  height: 25px;
  text-align: center;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
}


footer {
  color: #fff;
  padding: 20px;
  text-align: center;
}

#hora {
  font-size: 24px;
  text-align: left;
}

#mensaje-exito {
    display: inline-block; /* Para que el contenedor se ajuste al contenido */
    padding: 10px; /* Añade espacio interno alrededor del texto */
    background-color: #4CAF50; /* Color de fondo verde (puedes ajustarlo) */
    color: white; /* Color del texto */
    font-size: 18px; /* Tamaño del texto */
    border-radius: 5px; /* Bordes redondeados */
    margin-bottom: 10px; /* Espacio inferior */
}

/* Opcional: Agrega estilos para animación de entrada y salida */
@keyframes fadeInOut {
    0% { opacity: 0; }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0; }
}

.mensaje-exito {
    animation: fadeInOut 5s ease; /* Duración y función de tiempo */
}