/* ============================================================
   main.css — Estilos globales de BuscaPatitas
   ============================================================ */

/* Body base */
body {
    background-color: #f8f9fa;
}

/* Navbar brand logo */
.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* ---- Footer fijo ---- */
footer {
    background: white;
    border-top: 1px solid #dee2e6;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1030;
}

/* Padding para que el contenido no quede debajo del footer */
.container-principal {
    padding-bottom: 80px;
}

/* ---- Botón Mapa ---- */
.btn-mapa {
    border-radius: 12px;
    border-width: 2px;
    transition: 0.2s;
}
.btn-mapa:hover {
    transform: scale(1.02);
}

/* ---- Login ---- */
.login-card {
    max-width: 400px;
    width: 92%;
    border-radius: 24px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
}
body.login-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.logo-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.logo-login {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* ---- Admin ---- */
body.admin-page {
    background-color: #f1f4f6;
}
