/* 1. FUENTES */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
}

/* 2. ESTRUCTURA BASE (Flexbox para empujar el footer) */
html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Estilo para el Panel (home.php) */
body.panel-body {
    padding-top: 75px; /* IMPORTANTE: Esto evita que el Dashboard se corte */
    background-color: #f8f9fa;
    background-image: none; /* Quitamos el fondo del login en el panel */
}

/* Estilo para el Login (index.php) */
body.login-body {
    background: url('../img/fondo-p.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* 3. CONTENEDORES */
#main-container {
    flex: 1 0 auto; /* Crece para ocupar el espacio */
}

/* 4. COMPONENTES (Cero redondeados) */
.form-control, .btn, .alert, .dropdown-menu, .card {
    border-radius: 0 !important;
}

.navbar-adpay {
    background-color: #ffffff !important;
    border-bottom: 1px solid #eee;
    height: 65px;
}

.shadow-none { box-shadow: none !important; }

/* Footer siempre al fondo */
.footer {
    flex-shrink: 0;
}