body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url("../images/fondo.png");
}

h2 {
    text-align: center;
    color: #333;
}

#loginForm {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 220px;
    position: relative;
    top: 20px;
    left: 0px;
    height: 450px;
}
#principalForm {
    //background-color: #fff;
    padding: 20px;
    //border-radius: 5px;
    //box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 800px;
    position: relative;
    top: 20px;
    left: 50px;
    height: 450px;
    overflow: auto;
}
#principalForm1 {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 800px;
    position: relative;
    top: 20px;
    left: 50px;
    height: 450px;
    overflow: auto;
}

#loginForm1 {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 450px;
    position: relative;
    top: 20px;
    //left: 50px;
    height: 450px;
    overflow: auto;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    padding: 10px;
    background-color: #6084BD;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #4260A6;
}

#response {
    margin-top: 15px;
    text-align: center;
    color: #d9534f; /* Color para mensajes de error */
}

th, td {
  padding: 15px;
  text-align: left;
    border: 1px solid black; /* Aplica un borde sólido negro */
  padding: 8px; /* Espaciado interno */
  font-size: 12px;
}
.mensaje-inferior-derecha {
  position: fixed;
  bottom: 20px;    /* Distancia desde la parte inferior */
  right: 20px;     /* Distancia desde la parte derecha */
  background: #323232;
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 1000;   /* Asegura que esté por encima de otros elementos */
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.banner {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    align-content: center;
    top: 8px;
    //left: 1px;
    height: 50px;
    position: absolute;
    
}

.celular{
    top: 50px;
    left: 50px;
    height: 200px;
    width: 200px;
    position: absolute;
    background-image: url("../images/micel.png");
    background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    
}

.popup {
            display: none;
            position: fixed;
            left: 92.5%;
            top: 22%;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transform: translate(-50%, -50%);
            width: 180px;
            height: 85px;
            font-size: 12px;
            color: #1097b6;
            border: 1px solid #ccc;
            background-color: white;
            z-index: 1000;
            padding: 5px;
}

.menu_bal {
            display: block;
            position: absolute;
            align-items: center;
            //left: 50%;
            //top: 74px;
            top: 12%;
            transform: translate(0%, 0%);
            width: 90%px;
            height: 25px;
            font-size: 12px;
            color: #323232;
            z-index: 1000;
            padding: 5px;
            font-weight: bold;
}
.imagen {
      transition: all 0.3s ease;
    }
    .imagen:hover {
      animation: parpadeo 0.5s infinite;
    }
    @keyframes parpadeo {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0;
      }
    }
.overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }        

.editar {
            display: none;
            position: fixed;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 250px;
            overflow: auto;
            border: 1px solid #ccc;
            background-color: white;
            z-index: 1000;
            padding: 10px;
        }       