 /* Hace que el contenido principal y el footer se comporten correctamente */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1; /* Empuja el footer hacia abajo si hay poco contenido */
}

footer {
    background-color: #343a40; /* Fondo oscuro */
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto; /* Asegura que el footer siempre esté al final */
}

        
        /* Estilo adicional */
        .card-custom {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        .card-header-custom {
            background-color: #1d1d1d;
            color: white;
            font-weight: bold;
        }
        .input-icon {
            position: relative;
        }
        .input-icon input {
            padding-left: 40px;
        }
        .input-icon i {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
        }
        .container-custom {
            max-width: 800px;
        }
        /* Estilo del menú */
        .nav-tabs {
            
        }
        .nav-link {
            color: black; /* Texto blanco */
        }
        .nav-link.active {
            color: black;
        }
        .nav-link:hover {
            color: #ccc; /* Color de texto claro al pasar el mouse */
        }

        /* Estilo de la tarjeta de instrucciones */
        .instructions-card {
            margin-top: 20px;
            background-color: #f8f9fa;
            border: 1px solid #ddd;
        }
        .instructions-card-header {
            background-color: #1d1d1d;
            color: white;
        }
        .instructions-card-body {
            background-color: #fff;
        }