body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    color: #333;
}

header {
    background-color: #0077cc;
    color: white;
    padding: 15px;
    text-align: center;
}

main {
    padding: 20px;
}

#login-section, #dashboard {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

button {
    background-color: #0077cc;
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #005fa3;
}



/* Estilos para el modal de verificación */
.pagos-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    text-align: center;
    z-index: 1000;
}

.pagos-modal h2 {
    font-size: 18px;
    color: #333;
}

.pagos-modal p {
    font-size: 14px;
    color: #666;
}

.pagos-btn {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: background 0.3s;
}

.pagos-btn:hover {
    background-color: #45a049;
}

/* Mensaje de error */
.error-message {
    color: red;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}



/* Botón flotante */
.floating-button {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: #007bff;
    color: white;
    font-size: 28px; /* Más grande */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.2s;
    z-index: 1000;
    flex-direction: column;
    text-align: center;
}

/* Efecto hover */
.floating-button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* Texto debajo del botón */
.floating-text {
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-top: 3px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Ajuste para pantallas más pequeñas */
@media (max-width: 600px) {
    .floating-button {
        top: 70px;
        right: 10px;
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

    .floating-text {
        font-size: 10px;
    }
}


